shithub: mc

ref: e8c2fe57e7ec1d7465eb6f00bdb7aad8f4264c29
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
}