Help for this page

Select Code to Download


  1. or download this
    printf "Got %s!\n", shift while @ARGV;
    
  2. or download this
    use subs qw(printfor);
    printfor @ARGV;
    ...
        my $f = shift;
        printf "Got %s!\n", shift while @_;
    }