shithub: mc

ref: 67e077fe5811a7bc218cb58de5a32e337417268c
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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