NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Wow! (Score:1)
Autrijus, you are amazing!
thank you and some questions (Score:1)
it seems you have transitioned perl6 development from 'smoldering' to 'blazing'... the invigorated discussions on the language list would be accomplishment enough, but clearly this is only a start...
lucky for me, the 2 languages at the top of my list to learn for some time have been haskell and perl6 (in no particular order). your recent work has inspired me to work harder to realize this(i see the PUGS code base as a great way for me to kill 2 birds with one stone
Re:thank you and some questions (Score:1)
http://www.haskell.org/ghc/docs/latest/html/users_guide/template-haskell.html
no time to absorb it just yet, but will sleep on it for now
jeff
Re:thank you and some questions (Score:1)
The use of $ is not Template Haskell... The binary operator
($)simply means "apply function";f $ gis equivalent tof g.The use of$in Haskell code is for fixing precedence. For example, to calculate f(g(3)), one can writef $ g 3, or using the function composition, as(f . g) 3, butf g 3will not work, as it means f(g, 3)."Yet Another Haskell Tutorial" is a fine online tutorial. The books I'm currently reading are: