Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    print "content-type: text/html \n\n";
    
    print "Hello, PERL!";
    
  2. or download this
    use strict;
    use warnings;
    use CGI;
    
  3. or download this
    #!/usr/bin/perl
    
    ...
    #########################################
    #Comments start with a #
    #########################################
    
  4. or download this
    C:\temp>perl -le "print 7 ge 11"
    1