Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my @nums = (3,9,12);
    my $foo = min (@nums);
    print $foo;
    
  2. or download this
    3