Help for this page

Select Code to Download


  1. or download this
    print "a";
    BEGIN { print "b"; }
    print "c";
    
  2. or download this
    foo('bar');
    
    sub foo($) {
        print "foo called: @_\n";
    }
    
  3. or download this
    sob foo($);
    
    ...
    sub foo($) {
        print "foo called: @_\n";
    }