- or download this
$obj = MyClass->new( %params);
$obj = MyClass::new( 'MyClass', %params);
- or download this
qtyTotal=>sub{return &qtyTotal('phrase 1', @_);}
- or download this
$\ = $/; # see perlvar
sub b { print join" ",@_ }
...
1 2 3
got
got 1 2 3
- or download this
sub b { print join" ", @_ }
"b"->(1..3)