shithub: mc

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

View raw version
use std

const main = {
	var x : void

	x = f()
}

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