Darvass69
Darvass69
Can you elaborate on how it works and what I got wrong? My concern is that if it allows to much freedom, it might make ambiguous syntax that can’t be...
Also, how are statements affected by spaces? Or what happens if we have an indented block, and continue an expression on a new line? Like this: ```java if (true) {...
Are these expressions equivalent and valid? ```java (add (3, (add (5, 6))))! (add (3, (add (5, 6))))! ·add··3,··add··5,·6····! ·add··3,··add··5,··6····! ``` ```java function add(a, b) => a + b! function add(a,...