shithub: mc

ref: 6fb0d750b296506f31cfd0871fdac82ee878834b
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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