Help for this page

Select Code to Download


  1. or download this
        perl -e 'if ("h\@t" =~ /(\@)/ ) { print $1 }'
    
  2. or download this
        #!/usr/bin/perl
        use strict;
    ...
        my @friends = ('Margaret', 'Richard', 'Carolyn', 
                       'Rohan', 'Cathy', 'Yukiko');
        print "Friends: @friends\n";