shithub: mc

ref: 5dba8155dcecfd9f52856f5e658a189f2746c850
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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