Search Discussions
-
No examples are given, but are we to assume that this: for ($x = 0; $x < 100; $x++) { ... } becomes this: loop $x=0; $x < 100; $x++ { ... } How would you use an $x lexically scoped to the loop block? ...
Bryan C. Warnock
Jan 19, 2002 at 4:21 pm
Jan 29, 2002 at 2:13 am -
Beautiful. The synthesis of CATCH, BEGIN blocks, %MY, given, when, break, dwim =~, die, $!, $!.clean, and $!.stack is awe-inspiring. The way proto-exceptions, fail, and use fatal work together is ...
Tony Olekshy
Jan 22, 2002 at 4:21 am
Jan 25, 2002 at 2:30 am -
22
[A-Z]+\s*\{
Is this list of special blocks complete and correct? BEGIN Executes at the beginning of compilation CHECK Executes at the end of compilation INIT Executes at the beginning of run END Executes at the ...Brent Dax
Jan 20, 2002 at 2:59 am
Jan 21, 2002 at 10:04 pm -
I'm trying to answer the question "what does ^ mean?". Can anything be hyperoperated, or just a built-in set of operations? If "anything", can user's subroutines be hyperoperated? How will they know ...
Simon Cozens
Jan 25, 2002 at 5:44 pm
Jan 30, 2002 at 6:15 am -
I was reading Apocalypse 4 and was perturbed by the strange and inconsistent looking use of UPPER and lower case in various keywords. Now before anyone rushes to assist me in understanding the logic, ...
Andy Wardley
Jan 22, 2002 at 5:41 pm
Jan 26, 2002 at 3:01 am -
15
Re: Apoc 4?
http://www.perl.com/pub/a/2002/01/15/apo4.html David Whipp wrote:Will Coleda
Jan 18, 2002 at 5:33 pm
Jan 19, 2002 at 7:49 pm -
I'm going to just say this, and I ask that everyone who reads it take a deep breath, count to 10 and then respond if you wish. I was reading Apoc 4 and while marveling at the elegence of what Larry's ...
Aaron Sherman
Jan 28, 2002 at 3:44 pm
Jan 29, 2002 at 5:17 pm -
A4 said that there were no barewords in Perl 6. Does this mean that $foo{bar} actually should be written %foo{"bar"} ? I'm vaguely hoping that the answer is yes, because then we could treat *all* ...
Simon Cozens
Jan 26, 2002 at 4:58 pm
Jan 28, 2002 at 5:10 pm -
It would be nice to retire C<map . And list-context C<for is an elegant and more-powerful solution. However, it doesn't generalize to cover C<grep well, or C<reduce , or C<fold , C<spindle , or ...
Damian Conway
Jan 21, 2002 at 11:50 pm
Jan 24, 2002 at 6:17 pm -
Why all the fuss? Often, you would *want* to access that lexical after the loop terminates, for instance to check how it terminated. -----Original Message----- From: Michael G Schwern Sent: Monday, ...
Tzadik Vanderhoof
Jan 21, 2002 at 8:03 pm
Jan 22, 2002 at 9:21 pm -
<QUOTE Interestingly, this one tweak to the whitespace rule also means that we'll be able to simplify the parentheses out of other similar built-in constructs: if $foo { ... } elsif $bar { ... } else ...
Bryan C. Warnock
Jan 19, 2002 at 4:05 pm
Jan 21, 2002 at 10:07 pm -
This is my new toy. It's not perfect. I know what's lacking and I know how to fix it, but time is always against us. You don't need any documentation, you're intelligent people. Feed some code to ...
Simon Cozens
Jan 27, 2002 at 11:55 pm
Jan 30, 2002 at 5:37 pm -
5
123_456
Should we be allowed to use to group numbers, now that is concat? If not _, then what? (if anything?) -- Hanlon's Razor: Never attribute to malice that which is adequately explained by stupidity.Simon Cozens
Jan 25, 2002 at 5:31 pm
Jan 26, 2002 at 1:49 pm -
Okay boys and girls, what does this print: my @aaa = qw/1 2 3/; my @bbb = @aaa; try { print "$_\n"; } for @aaa; @bbb - my $a; my $b { print "$a:$b"; } I'm guessing one of: 1:1 2:2 3:3 or a syntax ...
Piers Cawley
Jan 19, 2002 at 12:01 am
Jan 21, 2002 at 8:52 am -
Did u passed "Bermuda Triangle" :") raptor
Raptor
Jan 18, 2002 at 8:20 pm
Jan 21, 2002 at 4:54 am -
I would like to suggest a different keyword that does not imply some `jumping' action. For years, I have used `nobreak' in my C code when I want to indicate that a case fall-through is intentional: ...
Dave Hartnoll
Jan 28, 2002 at 10:57 am
Jan 31, 2002 at 11:21 am -
Hi. I've had a feature in mind for a while now, but I missed my chance to make it an RFC. I was told that I could still present it by using this list, so here goes. There is a (relatively) new ...
Tzadik Vanderhoof
Jan 2, 2002 at 5:42 pm
Jan 21, 2002 at 7:23 pm -
Hi all, I have just one syntatic wish for Apoc4 (which in all other points I find utterly fantastic). Could we have: foreach $item in @arr {...} Instead of foreach @arr - $item {...} I find the first ...
Angel Faus
Jan 19, 2002 at 12:48 pm
Jan 21, 2002 at 6:31 am -
The two current examples of an evil expression block are do {} and eval {}, which require a semicolon terminator. However, with eval {} leaving, that leaves just do {}, which does (or should) fall ...
Bryan C. Warnock
Jan 19, 2002 at 3:52 pm
Jan 21, 2002 at 3:01 am -
From: David Whipp It may very well be the case that a procedure's POST block could have side effects. However, if Larry and Damian are on the same frequency... then a _method_'s PRE/POST blocks will ...
Garrett Goebel
Jan 18, 2002 at 10:06 pm
Jan 20, 2002 at 1:57 am -
see attached file. ===== frank crowley
Frank crowley
Jan 23, 2002 at 9:39 pm
Jan 23, 2002 at 9:49 pm -
Jarkko Hietaniemi writes: : What I notice, though, is that the current code does not warn for : characters beyond 0x10FFFF, which is definitely a bug. : : Ahh, it's all coming back now... warning ...
Larry Wall
Jan 30, 2002 at 6:49 pm
Jan 31, 2002 at 6:39 am -
Just out of curiosity, what percentage of Perl users would you say fall into this category? And should follow-ups to this go, perhaps, to advocacy@perl.org? John A
Jadams01
Jan 29, 2002 at 2:54 am
Jan 29, 2002 at 3:30 am -
"Non-yet-thrown exceptions must be a useful concept." This is a bullet point from a list in Apo4 introducing coverage of exception handling. Was Larry talking about an exception object that hasn't ...
Me
Jan 26, 2002 at 10:35 am
Jan 27, 2002 at 1:02 am -
Hello, I was reading stuff on the perl6 web site, and had some ideas about string interpolation rules. Is this a place to send this? String interpolation should be controlled by the programmer on a ...
Dew-Jones, Malcolm MSER:EX
Jan 26, 2002 at 1:07 am
Jan 26, 2002 at 1:22 am -
Does the alias operator, C<< - , work for C<if blocks too? if $a * $b / $c + $d - $abcd { ... } Where $abcd would be lexically scoped to the if block and else block, if defined. I expect it could be ...
Chris Dale
Jan 24, 2002 at 12:16 am
Jan 24, 2002 at 1:27 am -
do { ... } seems simpler. '- ' seems more visually noisy than it need be in this case. Perhaps: given $value as $g { ... } for @foo as $f { ... } But, I can see how for 0 .. Inf; "a" .. "z" x 1000 as ...
Me
Jan 20, 2002 at 10:35 am
Jan 21, 2002 at 4:54 am -
Why the double semantics of 'when'? It implicitly breaks when used as a 'when' block, but does not as a 'when' statement. It seems that a when should be a when should be a when, and a when being a ...
Bryan C. Warnock
Jan 19, 2002 at 4:37 pm
Jan 21, 2002 at 2:11 am -
[I'm an idiot. I forgot to send this to the group, too.] Aaron Sherman: # I'm going to just say this, and I ask that everyone who reads # it take a # deep breath, count to 10 and then respond if you ...
Brent Dax
Jan 28, 2002 at 4:18 pm
Jan 28, 2002 at 4:18 pm -
This just popped up from my sig file: Plus I remember being impressed with Ada because you could write an infinite loop without a faked up condition. The idea being that in Ada the typical infinite ...
Michael G Schwern
Jan 19, 2002 at 10:23 pm
Jan 19, 2002 at 10:23 pm
Group Overview
group | perl6-language |
categories | perl |
discussions | 30 |
posts | 290 |
users | 59 |
website | perl6.org |
59 users for January 2002
Archives
- May 2016 (16)
- April 2016 (4)
- March 2016 (6)
- February 2016 (20)
- January 2016 (28)
- December 2015 (20)
- November 2015 (12)
- October 2015 (51)
- September 2015 (35)
- April 2015 (15)
- March 2015 (28)
- February 2015 (35)
- January 2015 (49)
- December 2014 (24)
- November 2014 (18)
- October 2014 (43)
- September 2014 (82)
- August 2014 (58)
- July 2014 (16)
- June 2014 (28)
- May 2014 (63)
- April 2014 (53)
- March 2014 (53)
- February 2014 (21)
- January 2014 (19)
- December 2013 (48)
- November 2013 (110)
- October 2013 (35)
- September 2013 (31)
- August 2013 (40)
- July 2013 (48)
- June 2013 (53)
- May 2013 (39)
- April 2013 (20)
- March 2013 (31)
- February 2013 (22)
- January 2013 (15)
- December 2012 (6)
- November 2012 (10)
- October 2012 (12)
- September 2012 (25)
- August 2012 (16)
- July 2012 (45)
- June 2012 (38)
- May 2012 (35)
- April 2012 (61)
- March 2012 (68)
- February 2012 (39)
- January 2012 (25)
- December 2011 (15)
- November 2011 (12)
- October 2011 (13)
- September 2011 (24)
- August 2011 (62)
- July 2011 (31)
- June 2011 (29)
- May 2011 (17)
- April 2011 (5)
- March 2011 (25)
- February 2011 (22)
- January 2011 (20)
- December 2010 (25)
- November 2010 (124)
- October 2010 (101)
- September 2010 (63)
- August 2010 (104)
- July 2010 (219)
- June 2010 (91)
- May 2010 (110)
- April 2010 (171)
- March 2010 (152)
- February 2010 (154)
- January 2010 (65)
- December 2009 (87)
- November 2009 (89)
- October 2009 (169)
- September 2009 (173)
- August 2009 (324)
- July 2009 (157)
- June 2009 (158)
- May 2009 (415)
- April 2009 (128)
- March 2009 (331)
- February 2009 (457)
- January 2009 (306)
- December 2008 (270)
- November 2008 (130)
- October 2008 (110)
- September 2008 (188)
- August 2008 (175)
- July 2008 (70)
- June 2008 (125)
- May 2008 (204)
- April 2008 (425)
- March 2008 (141)
- February 2008 (86)
- January 2008 (140)
- December 2007 (153)
- November 2007 (53)
- October 2007 (19)
- September 2007 (69)
- August 2007 (22)
- July 2007 (22)
- June 2007 (239)
- May 2007 (164)
- April 2007 (106)
- March 2007 (171)
- February 2007 (166)
- January 2007 (175)
- December 2006 (69)
- November 2006 (122)
- October 2006 (301)
- September 2006 (306)
- August 2006 (329)
- July 2006 (183)
- June 2006 (113)
- May 2006 (239)
- April 2006 (314)
- March 2006 (90)
- February 2006 (183)
- January 2006 (193)
- December 2005 (196)
- November 2005 (307)
- October 2005 (613)
- September 2005 (338)
- August 2005 (412)
- July 2005 (505)
- June 2005 (410)
- May 2005 (913)
- April 2005 (635)
- March 2005 (640)
- February 2005 (440)
- January 2005 (72)
- December 2004 (249)
- November 2004 (151)
- October 2004 (34)
- September 2004 (290)
- August 2004 (207)
- July 2004 (335)
- June 2004 (188)
- May 2004 (172)
- April 2004 (403)
- March 2004 (217)
- February 2004 (221)
- January 2004 (180)
- December 2003 (166)
- November 2003 (193)
- October 2003 (46)
- September 2003 (104)
- August 2003 (100)
- July 2003 (78)
- June 2003 (106)
- May 2003 (306)
- April 2003 (804)
- March 2003 (523)
- February 2003 (137)
- January 2003 (635)
- December 2002 (425)
- November 2002 (570)
- October 2002 (837)
- September 2002 (447)
- August 2002 (385)
- July 2002 (238)
- June 2002 (187)
- May 2002 (215)
- April 2002 (493)
- March 2002 (72)
- February 2002 (80)
- January 2002 (290)
- December 2001 (34)
- November 2001 (33)
- October 2001 (417)
- September 2001 (210)
- August 2001 (185)
- July 2001 (277)
- June 2001 (290)
- May 2001 (638)
- April 2001 (503)
- March 2001 (186)
- February 2001 (595)
- January 2001 (151)
- December 2000 (28)
- November 2000 (6)
- October 2000 (307)
- September 2000 (1,508)
- August 2000 (3,476)