Help for this page

Select Code to Download


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