shithub: mc

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

View raw version
use std

const main = {
	var x : void

	x = f()
}

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