Help for this page

Select Code to Download


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