shithub: mc

ref: 4d23a296e341f76b62c91f1196221caeefe25e5a
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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