shithub: mc

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