shithub: mc

ref: 92b12fc6772aae7ebb9b6436dcfc393e17de01b6
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
}