|
6.2.10 released! xrl.us/hxnb | geoffb's column (/. ed): xrl.us/hxhk | pugscode.org | pugs.kwiki.org | paste: feather.perl6.nl:8888/ | www.geeksunite.net Set by Juerd on 20 October 2005. |
|||
| rafl | gaal: No, gmp changed its binary interfae. | 00:39 | |
| mrborisguy | how lazy is perl6 intended to be? | 02:17 | |
| I have some code right now like this: my @sieve = map { bool::false } 0...; | |||
| this, currently creates an infinite loop. Will it when everything is all said and done? | 02:18 | ||
| Juerd | mrborisguy: Just a little lazier than its users. | ||
| mrborisguy | Juerd: I've been on perlmonks... perl6 must be aiming to be pretty lazy ;) | 02:23 | |
| ?eval my $i;for($i=1;$i<10;$i++){say $i;} | 03:45 | ||
| evalbot_7693 | Error: unexpected "f" expecting ";", statements or end of input reserved word | ||
| mrborisguy | is support for c-style for loops in the plans? | 03:46 | |
| geoffb | mrborisguy, "loop" | 03:50 | |
| PerlJam | mrborisguy: yes. | ||
| mrborisguy: s/for/loop/ and it'll work just fine | 03:51 | ||
| mrborisguy | ?eval my $i;loop($i=1;$i<10;$i++){say $i;} | 03:52 | |
| evalbot_7693 | 1 2 3 4 5 6 7 8 9 undef | ||
| mrborisguy | hey, thanks! | ||
| geoffb | np | 03:55 | |