I have the following hash:
my %villains = {
"Boba" => "Fett",
"Darth" => "Vader",
"Moff" => "Tarkin",
}
I then print it like so:
print "".%villains;
I get the following output:
1/8
What semantics in Perl make this happen?
Thank you!