shithub: mc

ref: 76ce9de16baeec77b86ece6825b90715b08545ba
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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