boltlang / Bolt

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

Syntax that requires no punctuation is broken #51

Closed samvv closed 7 months ago

samvv commented 1 year ago

Currently, the following code does not parse:

(foo 1)

This is because parentheses are now treated specially to support more complex expressions. As a consequence, simpler expressions like the one above do not work anymore.

samvv commented 7 months ago

We solved this in an earlier commit by disabling the special syntax for now.