shithub: mc

ref: 5077c6c598ab3d5eed864fca827ed45b5abdb66b
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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