shithub: mc

ref: 89aa864b92914c1fddcdf352ca57a97a1f06bb4b
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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