shithub: mc

ref: f17b9c158a636daff150e3b3216aaeddc004439e
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

const f = {
	std.put("ok\n")
}