nice execution of an interesting idea!<p>i see removing the parens as an effort to rid the 'lispy' feel to the language, but how do you go about lexical scoping without parens like clojurscript or indentation like coffeescript? For example,<p><pre><code> fact 'init variables and return expr' {
should let(a=1,b=2){a+b} => 3;
}
</code></pre>
to what point will the let bindings be valid?