shithub: mc

ref: 72819dcccff346a919f36f8cb8b1ab2014ab4977
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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