shithub: mc

ref: 09e7cfb56388b1ea79ee7e100e52cb5b34e6017c
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
}