shithub: mc

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