Help for this page

Select Code to Download


  1. or download this
    >perl -v
    
    ...
            (Missing operator before ?)
    syntax error at -e line 1, near "baz 'zot'"
    Execution of -e aborted due to compilation errors.
    
  2. or download this
        $foobj->method( qw(b a) );
        $foobj->method  qw(b a)  ;
        $foobj->method( 'b', 'a' );
    
  3. or download this
        $foobj->method  'b', 'a'  ;