Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    package Hello;
    ...
      print "Hello, world\n";
    }
    1;
    
  2. or download this
    #!/usr/bin/perl
    use Hello;
    hello();
    
  3. or download this
    C:\GSDBVTAS\GSDBVTMAIN>perl hello.pl
    Can't locate Hello.pm in @INC (@INC contains: C:/Perl/lib C:/Perl/site
    +/lib .) at
     hello.pl line 3.
    BEGIN failed--compilation aborted at hello.pl line 3.