shithub: mc

ref: 458b9914044d8ddcdaea19e875a76493494b60f0
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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