shithub: mc

ref: 3f8013774a97396ace94769e216614ca4fde42a0
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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