On 7/19/12, Kartik Agaram <a...@akkartik.com> wrote:
>> "." is just whitespace.
>
> Ah, of course :/ I'm having trouble holding that in my head.
>
> Getting rid of periods, I'm still having trouble understanding why the
> second line isn't wrapped in parens in:
>
> \
>   a
>     b c
>
> Shouldn't this be ((a (b c)))?
>

Yes it is.

But what you were asking was this:

\
  list-of x
    list x

And it's wrong, because it's parsed as:

(
  (list-of x
    (list x)))

Because what we wanted was:

(
  (list-of x)
    (list x))

That's why we have SPLIT:

\
  list-of x
  \ list x

Which does that for you magically.

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Readable-discuss mailing list
Readable-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/readable-discuss

Reply via email to