Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    
    print foo().' '.foo('baz')."\n"; # that was expected
    print bar().' '.bar('baz')."\n"; # undef
    
  2. or download this
    ##################################################
    Expected output:
    ...
    0
    
    ##################################################