shithub: mc

ref: 718107741aaeebbdce0391d6080ada98428c2c86
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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