shithub: mc

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

View raw version
use std

const main = {
	var x : void

	x = f()
}

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