shithub: mc

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

View raw version
use std

const main = {
	var x : void

	x = f()
}

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