shithub: mc

ref: 3de36cf522da6e8fdb102fb1169465cbbabb3df4
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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