# constructor
sub new
{
my $this = {};
# object properties
$this->{colour} = 'yellow';
sub getColour {
{
my $this = shift;
return $this->{colour};
}
sub setColour{
my $this = shift;
$this->{colour} = shift;
return $this->{colour};
}
####
$this->{colour} = ('yellow', 'red', 'purple');
####
print $this->{colour};