shithub: mc

ref: f069b33395af1e4a5213b5f5110d583c0af5be7b
dir: /test/nestedgoto.myr/

View raw version
use std

const main = {
    match 0
    | 0:
        goto ok
    | 1:
        :ok
        -> void
    | _:
    ;;
    std.exit(1)
}