Help for this page

Select Code to Download


  1. or download this
    perl -e 'your code goes here' 
    perl -E 'your code goes here' # This enables Perl 5.10 features
    
  2. or download this
    #!/usr/bin/perl
    use feature ":5.10"; # Use all new features in Perl 5.10
    use strict;
    use warnings;   
    # Your code goes here here