Help for this page

Select Code to Download


  1. or download this
      my $thing = Thing->new($id);
      print $thing->name;
      $thing->name($new_name);
      print $thing->id;
      $thing->id($new_id);
    
  2. or download this
      print $thing->name;
      $thing->set_name($new_name);
    
  3. or download this
    [% 
       FOREACH customer = customers;
          customer.last_name; ", "; customer.first_name, "\n";
       END;
    %]