RE: What will be the Perl6 code name ?!!

2000-10-19 Thread Mike Pastore
On Thu, 19 Oct 2000, Garrett Goebel wrote: > The only acceptable code name other than "Perl6" is "YACN" ;) > What's that? You Actually Cannot Tell? Yes, All the Code is New? Yet Another Crazy Notion? -- Mike Pastore

Re: RFC 109 (v1) Less line noise - let's get rid of @%

2000-08-16 Thread Mike Pastore
x27;m trying to make is that the contextual clues (@$%) don't tell you what IT is, but what you're getting from IT. That's what's so important. Take this away and Perl becomes C. int a; struct b; *cough* No, thank you. -- Mike Pastore [EMAIL PROTECTED]

Re: RFC 109 (v1) Less line noise - let's get rid of @%

2000-08-16 Thread Mike Pastore
On Wed, 16 Aug 2000, David Corbin wrote: > Mike Pastore wrote: > > > $hashish{'dog'}# one whutzit > > @hashish{'dog', 'cat'} # more than one whutzits > > each %hashish # one whutzit, indexed > > %hashish

Re: RFC 109 (v1) Less line noise - let's get rid of @%

2000-08-16 Thread Mike Pastore
gs>, because from a "birds-eye view" a programmer would see the C<@> and move to the next line, not pausing to read all the way through to see that C is obviously plural. Again, I refer you to Dan Sugalski's message about this. > You are asking wrong/unnecessary questions, and getting wrong answers. That was disturbingly Zen. ;-) -- Mike Pastore [EMAIL PROTECTED]

Re: RFC 120 (v2) Implicit counter in for statements, possibly $#.

2000-08-18 Thread Mike Pastore
... } or: for($i = 0; $i <= $#array; $i++) { next unless $array[$i]; ... } this: while(($index, $value) = each(@array)) { ... } Seems much more elegant, although maybe we should stick to for* commands for arrays. -- Mike Pastore [EMAIL PROTECTED]

Re: McNamara's C<$#> as a property of any array element

2000-08-17 Thread Mike Pastore
ast index, 4) maybe others? $#ARY could be depreciated (another "confusing" special variable bites the dust) and we would have a whole lot more detail regarding arrays during array ops. Any thoughts on this? -- Mike Pastore [EMAIL PROTECTED]

Re: RFC 23 (v5) Higher order functions

2000-09-18 Thread Mike Pastore
;t start at uno. That doesn't make ANY sense! > Other than this issue the RFC is excellent^Wamazing. Here, here. As usual, Damian. :) -- Mike Pastore )#!Perl Monk [EMAIL PROTECTED] ) bilogic.org Sys Admin