On 7/19/12, Kartik Agaram <a...@akkartik.com> wrote:
> 1. I'm making heavy weather of the difference between SPLIT and SPLICE at
> http://sourceforge.net/p/readable/wiki/Current

SPLICE: allows this:

foo bar \
.                                nitz kuu

==>

(foo bar nitz kuu)

SPLIT doesn't.

SPLIT: allows this:

\
.  foo bar
.  nitz kuu

==>
(
  (foo bar)
  (nitz kuu))

SPLICE:

(
  foo bar
  (nitz kuu))

------------------------------------------------------------------------------
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