Help for this page

Select Code to Download


  1. or download this
    perl report.pl -CustomerName "Penelope NY" > test.txt
    
  2. or download this
    perl report.pl --CustomerName "Penelope NY" > test.txt
    
  3. or download this
    use strict;
    use Getopt::Long;
    ...
    for my $customer (@customer) {
        print "Hello $customer!\n";
    };