Help for this page

Select Code to Download


  1. or download this
    18:37 >perl -Mstrict -wE "use subs 'TestMe'; BEGIN { TestMe(); } sub T
    +estMe { say 'Hi!'; }"
    Undefined subroutine &main::TestMe called at -e line 1.
    BEGIN failed--compilation aborted at -e line 1.
    
    18:37 >
    
  2. or download this
    18:37 >perl -Mstrict -wE "sub TestMe { say 'Hi!'; } BEGIN { TestMe(); 
    +}"
    Hi!
    
    18:41 >