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.
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)
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:I recommend the "Algorithms" book for Haskell newcomers; the other two introduction books by Thompson and Hudak are also quite pleasant to read.
To trace the latest source tree, use one of the three source repositories linked from the Pugs page [haskell.org].
As for development tools... I'm currently still using Vim, but Eclipse's Haskell support [sourceforge.net] is excellent.
Reply to This
Parent