shithub: mc

ref: 4a8bc7aa008f753c082a914a0f95ea3df09d2123
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
}