Help for this page

Select Code to Download


  1. or download this
    #! perl
    use strict;
    ...
        print "$_\n" for @y;
        print "\n";
    }
    
  2. or download this
    my  @args = (2, 3, 5, 7);
    foo(@args);
    
  3. or download this
    bar(@args);
    
  4. or download this
    bar($args[0], $args[1], $args[2], $args[3]);