shithub: mc

ref: ccc18d6ab171efa2a512f3c79c535a27b5baec7f
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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