shithub: mc

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

View raw version
use std

const main = {
	var x : void

	x = f()
}

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