Help for this page

Select Code to Download


  1. or download this
      print "above\n";
      my $E = binary($k);
      print "below\n";
    
  2. or download this
      print "x\n";
      print "y\n";
      print "z\n";
    
  3. or download this
    # How many steps we want to take
    my $steps = 3;
    ...
    
    # Start off
    recur(0);
    
  4. or download this
    % ./tst.pl 
    Start with 0
    ...
     Done with 1
    <- Back from 1
    Done with 0