shithub: mc

ref: 9301bca7cc870a02996ce0edc340021527057784
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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