no·mol·o·gy n.
The study and discovery of general physical and logical laws.

Monday, September 29, 2008

Lambdaish Perl

Here's a snippet I wrote to test code references.

my $f = sub {
  my $a = shift;
  &$a();
};
&$f( sub { print "hej\n"; } );

No comments: