Help for this page
my $z; my $x = sub { $z = 2 + 2 } ; ... # other things. not so consistent print $z;
(setq closure (delay (setq z (+ 2 2)))) (eval closure) ;;; works