shithub: mc

ref: 9021cc39e9db0ef9c433dda8b1513050d359a8eb
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
}