shithub: mc

ref: 4665f57c5a86ade9ef524b3d7380f6fcd1abb0ff
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
}