lojikil / coastML

a tiny experimental ML dialect combining Yeti & CarML
ISC License
12 stars 0 forks source link

`case` without initial condition indents incorrectly #9

Closed lojikil closed 1 year ago

lojikil commented 1 year ago

this took a bit to track down which combination of forms was doing it, but:

case
    | (x < 10) { print "in the if arm" }
    | _ { print "in the else arm" }
esac

generates incorrectly indented code