shithub: mc

ref: 066812db79f10a3cdee5268ad7214bacb44d2eef
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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