Re: [svn:perl6-synopsis] r13564 - doc/trunk/design/syn

2007-02-02 Thread Larry Wall
On Fri, Feb 02, 2007 at 08:06:56PM +, Smylers wrote: : I've got a slight concern over the name C though. The Perl QA : folk already seem to have enough trouble coming up with enough : permutations of "test", "tests", "Test", "TEST", and so on for labelling : tests, test frameworks, and things

Re: [svn:perl6-synopsis] r13564 - doc/trunk/design/syn

2007-02-02 Thread Smylers
[EMAIL PROTECTED] writes: > +++ doc/trunk/design/syn/S03.pod Fri Feb 2 01:07:36 2007 > > if $filename ~~ :e { say "exists" } > +if $filename.:e { say "exists" } > > +Both of these forms actually translate to > + > +if $filename.TEST(:e) { say "exists" } Hey, that looks good

[svn:perl6-synopsis] r13564 - doc/trunk/design/syn

2007-02-02 Thread larry
Author: larry Date: Fri Feb 2 01:07:36 2007 New Revision: 13564 Modified: doc/trunk/design/syn/S03.pod doc/trunk/design/syn/S12.pod Log: Also allow colon pair syntax for a methodlike kind of filetest. A bit of junctional cleanup. Modified: doc/trunk/design/syn/S03.pod ===