shithub: mc

ref: 225486558c1552baf09cae2a17d313b061ee6edd
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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