shithub: mc

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

View raw version
use std

const main = {
	var x : void

	x = f()
}

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