cperl icon indicating copy to clipboard operation
cperl copied to clipboard

array and hash fields syntax

Open rurban opened this issue 8 years ago • 0 comments

class XX {
  has @array;
  has %hash;
}
my $obj = new XX;
$obj->array[0]; # -> aelem
$obj->hash{0}; # -> helem

rurban avatar Jul 20 '17 07:07 rurban