Anonymous variables
my $record = 'Steve,Piner,Developer'; my ($first_name, $calling); ($first_name, $, $calling) = $record.split(','); say "$first_name claims to be a $calling";
Steve claims to be a Developer