Re: Multiline comments in Perl6

2007-12-30 Thread Shane Calimlim
On Dec 30, 2007 8:10 AM, Jonathan Lang [EMAIL PROTECTED] wrote: Let's say that the programmer in question wants to comment out all but the third line; so he prefixes everything else with '#': #if ($test) #{ .say; #} else { # .doit; #} What the writer _wants_ this to do is the

Re: The new wiki

2006-07-06 Thread Shane Calimlim
I own p6docs.com if you'd like to use that, just give me some nameservers to point to. On 7/5/06, Michael G Schwern [EMAIL PROTECTED] wrote: Thanks to Tyler MacDonald and yi.org we now have a brand spanking new wiki! http://perl-qa.yi.org/ is its location, we'll worry about getting more

Re: Parrot Shootout

2005-12-10 Thread Shane Calimlim
On 12/9/05, Shane Calimlim [EMAIL PROTECTED] wrote: I ran a couple benchmarks with a language/compiler I've been toying with: (running on redhat el3, p4 3.2 ghz) Ack(3,6): 509 2.85374 seconds Ack(3,9): 4093223.19224 seconds Using the following code: ack(x, y) if x

Re: Parrot Shootout

2005-12-10 Thread Shane Calimlim
On 12/10/05, Roger Browne [EMAIL PROTECTED] wrote: Does your compiled code use PMC Integers or native ints? (I'm using PMCs). Regards, Roger Browne My goal is to have the compiled code as simple as possible, so the compiler uses native ints and strings if it can. I also upgraded the

Re: conditional wrapper blocks

2005-09-22 Thread Shane Calimlim
Excuse my noobness, I really have no idea about any of the inner workings, but am just concerned with a more elegant syntax of doing it. How about something like: if ($condition) { pre; always { # maybe uncond instead of always, or both -- always could # mean 'ignore all conditions' and uncond