shithub: mc

ref: 2c0fbf27314d04cb3bb5ab1ea3f9b7bae556f89a
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
}