Help for this page

Select Code to Download


  1. or download this
    C:\test>perl -Mstrict -w
    package x;
    ...
    42;
    ^Z
    Useless use of a constant in void context at - line 5.
    
  2. or download this
    C:\test>perl -Mstrict -w
    package x;
    ...
    return 42;
    ^Z
    Can't return outside a subroutine at - line 3.