shithub: mc

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

View raw version
use std

const main = {
	var x : void

	x = f()
}

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