shithub: mc

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