shithub: mc

ref: 0022c21553124df1dc02948b4fc27bd3906e4d37
dir: /test/local-labels.myr/

View raw version
use std

const main = {
	goto foo
	-> 123
:foo
	-> bar()
}

const bar = {
	goto foo
	-> 42
:foo
	-> 10
}