shithub: mc

ref: f266309ebf7cdc6e8324b1849a273faac327111c
dir: /test/voidassign.myr/

View raw version
use std

const main = {
	var x : void

	x = f()
}

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