binding operators and related introspection

2006-07-15 Thread Darren Duncan
After confirming between Synopsis 3 and the newest Pugs that the binding operator := works as follows ... my $x = 'foo'; my $y = 'bar'; my $z := $x;# $x and $z point to same 'foo', $y to a 'bar' $z := $y; # $y and $z point to the same 'bar', $x to a 'foo' print "x,y,z are '$x

Re: A note for test writers

2006-07-15 Thread jerry gay
On 7/15/06, Leopold Toetsch <[EMAIL PROTECTED]> wrote: Folks, Please always verify test results, don't use the Parrot output of the test as the expected output. If you are implementing a new feature, write the *test first*. Thanks, leo PS from r13305: @@ -1324,7 +1324,7 @@ set P2, 300

A note for test writers

2006-07-15 Thread Leopold Toetsch
Folks, Please always verify test results, don't use the Parrot output of the test as the expected output. If you are implementing a new feature, write the *test first*. Thanks, leo PS from r13305: @@ -1324,7 +1324,7 @@ set P2, 300 # .Integer set P3, 246.246

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

2006-07-15 Thread larry
Author: larry Date: Sat Jul 15 00:15:51 2006 New Revision: 10217 Modified: doc/trunk/design/syn/S03.pod Log: More clarifications, many suggested by dduncan++. Modified: doc/trunk/design/syn/S03.pod == --- doc/trunk/d