shithub: mc

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

View raw version
use std

const main = {
	var x : void

	x = f()
}

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