Help for this page

Select Code to Download


  1. or download this
    #!perl
    use strict;
    ...
      print $closure->($_), "\n";
    }
    print "And my X is $x\n";
    
  2. or download this
    #!perl
    use strict;
    ...
    for (1..4) {
      print $closure->($_), "\n";
    }