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