Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl -w
    use strict;
    ...
         print $_;
       }
    }
    
  2. or download this
    #! /usr/bin/perl -w
    use strict;
    my $message = "Hello Lucy!";
    print "$message";
    
  3. or download this
    #! /usr/bin/perl -w
    use strict;
    ...
    for ($i=0;$i<$count;$i++) {
      print "\@value[$i] = $value[$i]\n";
    }