Help for this page

Select Code to Download


  1. or download this
    $obj->{other_obj}->method;
    
  2. or download this
    $obj->other_obj()->method;
    
  3. or download this
    $obj->other_obj->method;
    
  4. or download this
    use warnings;
    use strict;
    ...
        
        $obj->one->say;
    }