shithub: mc

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

View raw version
use std

const main = {
	var x : void

	x = f()
}

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