shithub: mc

ref: 14fca46c234b6da5f79283a871cfb7275efadaf5
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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