Help for this page

Select Code to Download


  1. or download this
    $template->param(
        EMPLOYEE_INFO => [{name => 'Sam', job => 'programmer'}, {name => '
    +Steve', job => 'soda jerk'}]
    );
    print $template->output();
    
  2. or download this
    has 'friends' => ( is => 'rw', isa => 'Array', default => () );
    
  3. or download this
    has 'friends',is => 'rw', isa => 'Array', default => ();
    
  4. or download this
    has 'friends',{ is => 'rw', isa => 'Array', default => () };