[plt-scheme] Paren Paralysis Sufferers Unite
Morgan wrote:
> It just seems a bit unreasonable, c++ and java are entirely happy to
> allow my superfluous parentheses I'm accustomed to using, it can make
> the code easier to read after all.
>
Not to pile on here, but consider: what is wrong with the following line?
printf("Hello, world.")();
That's what you'd be saying by stating ((display "Hello, world."))
instead of (display "Hello, world.").
Lisp absolutely has syntax. It is very simple and regular, but it is
nevertheless syntax.
Ben