in reply to Lisp is More Evaluatable
Personally, I think the normal dereference syntax is quite readable:
my $z; my $x = sub { $z = 2 + 2 } ; &$x; # Oh, I derefernce it like I do other references, # with the standard subroutine prefix. Gotcha.... print $z;
|
---|