shithub: mc

ref: 38a4c78511a5aea2608ea44bbfde055485197b50
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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