Help for this page

Select Code to Download


  1. or download this
    my $age = do {
     my $boss = $company->boss();
     my $wife = $boss ? $boss->wife() : undef;
     $wife ? $wife->age() : undef
    };
    
  2. or download this
    my $age = $company~>boss()~>wife()~>age();