Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    print "Hello, world!\n";
    
  2. or download this
    C:\Perl64\bin>Hello_world_test.pl
    Hello, world!
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    print "Hello, world!\n";
    
  4. or download this
    C:\Perl64\bin>Hello_world_test.pl
    Can't locate strict.pm in @INC (@INC contains: .) at C:\Perl64\bin\Hel
    +lo_world_t
    est.pl line 2.
    BEGIN failed--compilation aborted at C:\Perl64\bin\Hello_world_test.pl
    + line 2.