Help for this page

Select Code to Download


  1. or download this
    sub rev ($) {
        $_ = shift;
    ...
    #    print "in swap: $_\n";
        return $_;
    }
    
  2. or download this
    sub rev ($) {
        $_ = shift;
    ...
    #    print "in rev: $_\n";
        return $_;
    }