YAPC::2004::Israel | << Previous | Index | Next >> | Copyright © 2004 Gaal Yahas |
Who needs to implement fields in many ways?
package TrafficLight; sub new { bless { colour => 'red' }; };
$light = TrafficLight->new(); $light->{color} = 'green'; That's the way it's done at least 92.7% of the time on CPAN |