shithub: mc

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