shithub: mc

ref: 2698fe288642465ec636dca1c8f4ff88a22c5afe
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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