Help for this page

Select Code to Download


  1. or download this
    sub swap_1 { (@_) = reverse(@_); }
    
    ...
    print "one is '$one'\n";
    print "two is '$two'\n";
    print "-------------\n";
    
  2. or download this
    one is 'I am one'
    two is 'I am two'
    ...
    one is 'AAA'
    two is 'BBB'
    -------------