pugscode.org/ | nopaste: sial.org/pbot/perl6 | ?eval [~] <m oo se> | We do Haskell, too | > reverse . show $ foldl1 (*) [1..4] | irclog: irc.pugscode.org/
Set by diakopter on 11 July 2007.
[particle] pugs: say foo => bar; 00:53
exp_evalbot OUTPUT[*** Named argument found where no matched parameter expected: ("foo",Ann (Pos (MkPos "/tmp/IxcZgcMhmq" 1 12 1 15)) (App (Var "&bar") Nothing []))␤ at /tmp/IxcZgcMhmq line 1, column 1-15␤]
meppl good night 03:28
ispy_ hey guys, how do I access an anonymous array within a hash in p6? 03:33
sorta like @{ $struct{key} } in p5.
I'm not convinced that "for %hash<something> -> my $element { }" actually works. 03:34
when I do it, it seems to display all of the elements in scalar context. 03:36
TimToady @tell ispy_ you can use "for %hash<something>[] -> $element { }" to get at all the elements; scalar values don't automatically flatten in a list even if they happen to be compositie objects 06:14
lambdabot Consider it noted.
pugs_svn r19002 | andara++ | [pugs] async {} returns thread id 10:45
pmurias andara: hi 11:53
andara hi pmurias
ludan ela 13:39
pugs_svn r19003 | pmurias++ | [kp6] completed the p6 version of 02-grammar.t 13:46
pmurias ludan: hi 13:54
pugs_svn r19004 | pmurias++ | [kp6] removed uneeded setters from Match 16:24
pina So I've begun using perl 17:23
For automating unit testing and collecting logs..
How good is that for a start
I like it because of CPAN ;)
it is said that anything you might want to write can be done with CPAN and 40 lines of Perl code and that Perl is about a million times more concise than Java. 17:25
Regular expressions are cool. But you need libraries also 17:27
Don't you guys think we need that?
pmurias pina: what do think we need? 17:31
pina I would like to complete reading SICP one day 17:32
Its a bit more easier to read than Knuth
pmurias: I rthink perl is great, LISP is a lil low on libraries though
masak pina: indeed, CPAN is an asset 17:37
pmurias i would risk saying that SICP is a lot easier than the Art of Computer Programming 17:41
masak yes, but that's because they're about different things 17:47
both are great books, mind you 17:48
but the greater complexity of TAoCP is due to its wider scope and ambitions 17:49
pmurias the use of the MIX dosn't help
masak :) 17:51
From the Wikipedia article: "Some readers are put off by the use of assembly language, but Knuth considers this necessary because algorithms need a context to judge speed and memory usage." 17:52
pmurias not being able to read code examples (withought looking up instructions constantly) is annoying 17:55
masak so learn MIX 17:56
it's not much more effort than to learn some other language
pmurias masak: do you have a working mix knowlege? 17:58
masak pmurias: somewhere between being able to read it directly and being able to write it directly, yes 17:59
then again, I keep coming back to TAoCP1 for more, and each time a learn a little more MIX 18:00
Patterner MIX is obsolete. Use MMIX :) 18:03
masak Patterner: good point, but it doesn't work if you're reading the book 18:04
although these guys have been doing an admirable job so far: mmixmasters.wiki.sourceforge.net/ 18:05
syle2 whats status on perl6? does it compile and does it support all the cpan modules? 21:32
Tene syle2: there are a few implementations of varying completeness. 21:36
If you want to use Perl 6 right now, the most feature-complete implementation is Pugs.
Pugs can use many of the modules in cpan without problem.
Pugs development has mostly stopped for a while. Parrot development has been very rapid lately, and they have a great infrastructure, but their Perl 6 implementation isn't very complete ATM. 21:39
syle2 can i add a request? 21:41
currently function does: return($a,\@b,$c);You call it with: my($a,$b,$c)=test(); and have to use my @b = @$b; to get a copy of the array 21:44
be nice if we could do return($a,@b,$c); my($a,@b,$c)=test();
same with shift and @_
i think when a function exits all local variables, arrays, hashes, references should be destroyed, return on what you want out of it 21:46
syle2 I think of a function as you pass in something and should return something, end of story, I guess that would screw up reference passing but honestly if you can pass back out what you want there is no need for it, probably consume less memory cleaning up after every function execute as well without references and globals lying around everywhere 21:49
neuromu Will perl 6 have any generic programming facilities? 22:26
Juerd What is "generic" in this case? 22:30
neuromu as in Design Patterns, generics == parametric types 22:35
PerlJam neuromu: perl5 already has generic programming facilities.
neuromu PerlJam: howso? 22:39
<--- ignorant
nevermind, will read dc's oo perl book 22:43