Help for this page

Select Code to Download


  1. or download this
    package Car;
    sub new { bless {},shift };
    sub title { $_='title'; 'BITTER' };
    ...
    print map{{title=>$_->title(),desc=>$_->descr()}} Car->F();
    use Data::Dumper;
    die Dumper map{{title=>$_->title(),desc=>$_->descr()}} Car->F();