boltlang / Bolt

A programming language for rapid application development
35 stars 1 forks source link

Make it easier to nest match-expressions #46

Closed samvv closed 1 year ago

samvv commented 1 year ago

Due to the way Punctuator works, the following is not possible:

(match True.
  False => 0
  True => 1).to_string

The parser will always throw an error on ), expecting a LineFoldEnd but not getting it.