shithub: mc

ref: 84d4511320ac7ca25acb9d5ca449d5a0fcb1f246
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
}