Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    sub display {
        print "_ = " . shift() . ", 1 = " . shift() . "\n";
    }
    
  2. or download this
    _ = 1, 1 = 5
    _ = 2, 1 = 5
    _ = 5, 1 = 5
    8
    
  3. or download this
    _ = 1, 1 = 5
    _ = 2, 1 = 5
    _ = 5, 1 = 5
    15