shithub: mc

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