shithub: mc

ref: 2088041377729498bfa0b4fc5720b020051025d8
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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