cperl
cperl copied to clipboard
array and hash fields syntax
class XX {
has @array;
has %hash;
}
my $obj = new XX;
$obj->array[0]; # -> aelem
$obj->hash{0}; # -> helem