shithub: mc

ref: 4ab9c0f5b96c84329a887f7fdbba92066c8ad7a7
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
}