Help for this page

Select Code to Download


  1. or download this
    use Carp qw(croak);
    
    ...
    
        return @{ $this->{colour}||[] };
    }
    
  2. or download this
    sub colour {
        my $this = shift;
    ...
    
        return @{ $this->{colour}||[] };
    }