shithub: mc

ref: 509d071791cc2c008759f637931b7afea73c083b
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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