shithub: mc

ref: 58fc61a9b04d57ccafa3b1316fbea2faccf5fbbd
dir: /test/local-labels.myr/

View raw version
use std

const main = {
	goto foo
	std.exit(123)
:foo
	std.exit(bar())
}

const bar = {
	goto foo
	-> 42
:foo
	-> 10
}