- 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.
- or download this
$foobj->method( qw(b a) );
$foobj->method qw(b a) ;
$foobj->method( 'b', 'a' );
- or download this
$foobj->method 'b', 'a' ;