[Semi-OT] The ^^ operator

2004-03-18 Thread Brent 'Dax' Royal-Gordon
Did anybody notice that Larry has slipped in an anime smiley operator? Between ^^ and the recent musing about wa... On a closely related note, how long do you think it'll be before someone puts this on CP6AN? class n { method n() is classmethod {# Or whatever it turns out to be

Synopsis 3: quick junction question

2004-03-18 Thread Sean O'Rourke
S3 says: 1|2 + 34; # (4|5) (5|6) but shouldn't that equal (1 + (34)) | (2 + (34)) = (45) | (56) = (4|6) 5 # ??? For one thing, OR's of AND's (DNF) is just nicer than AND's of OR's (CNF). For another, I read that as

Re: Synopsis 3: quick junction question

2004-03-18 Thread Damian Conway
Sean O'Rourke wrote: S3 says: 1|2 + 34; # (4|5) (5|6) but shouldn't that equal (1 + (34)) | (2 + (34)) = (45) | (56) = (4|6) 5 # ??? No, it shouldn't. You should read: 1|2 + 34 as: Is there a