shithub: mc

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