Re: Whitespace and Blocks (was RE: Fisher-Yates shuffle)

2002-04-17 Thread Abhijit Menon-Sen
At 2002-04-16 20:16:17, [EMAIL PROTECTED] wrote: And no, saying perl5 will still be around isn't doing us much good. There won't be new development of perl5, or bug fixes. There will. It'll just be slower than it is now. - ams

Re: foreach bug

2002-05-06 Thread Abhijit Menon-Sen
At 2002-05-06 23:32:49, [EMAIL PROTECTED] wrote: I am pretty sure that this: perl -e 'for (1,2,3,4,5,6,7,8,9,10) { $_++; }' Is the same as: perl -e 'for (10) { $_++; }' Then this: perl -le 'for (1,2,3,4,5,6,7,8,9,10) { print }' Should be the same as: perl -le 'for (10) {

Re: Sort is lazy?!? (as in Haskell)

2002-07-19 Thread Abhijit Menon-Sen
At 2002-07-19 18:33:34, [EMAIL PROTECTED] wrote: $i_need_add_something_to_number_of_letters+(()=/\w/g) or, saving a stroke: $i_need_add_something_to_number_of_letters+s/\w/$/g Or, saving 41 strokes: $i+s/\w/$/g - ams