Help for this page

Select Code to Download


  1. or download this
    $text = sub {
    <<EOT;
    ...
    
      print &$text;
    }
    
  2. or download this
    $n = sub {1};
    $m = sub {&$n*2};
    ...
    print &$s;
    $n = sub {2};
    print &$s;