Unfortunatelly, I did not figure out, why $alfa
remains empty:
use 5.014;
no strict 'refs';
my $berta = 5;
my $gamma = 'berta';
my $alfa = ${$gamma};
say "'$alfa'";
Must be something really simple... I expected $alfa
become 5
here. What I missed?