On Tue Nov 25 13:19:15 2008, moritz wrote:
> Rakudo as of r33193 doesn't implement lexical subroutines; neither 'my
> sub ...' is implemented nor does 'my $x = sub { ... }' work properly (a
> test for the latter can be found in t/spec/integration/man-or-boy.t).
> 
All of:

my $x = sub { ... }
my &x = sub { ... }
sub foo(&x) { x() }

Now work. Lexical subroutines are still todo.

Jonathan

Reply via email to