Perl -> , , , . rhs [...], {...}, (...) . $some_name some_name, .
my $array_ref = [1, 2, 3];
say $array_ref->[2];
say $$array_ref[2];
my $hash_ref = {a => 1, b => 2};
say $hash_ref->{b};
say $$hash_ref{b};
my $code_ref = sub {"[@_]"};
say $code_ref->('hello');
say &$code_ref('hello');
my $object = Some::Package->new();
$object->some_method(...);
my $method = 'foo';
$object->$method(...);
$object->$code_ref(...);
-> .