shithub: mc

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

View raw version
use std

const main = {
	var x : void

	x = f()
}

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