shithub: mc

ref: 321aec6bf2b82698196a94725e37cee135b1fe2b
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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