I have 2 basic questions on perl variables.
@names = ('Super_!','Massive_@',"Black#", "Hole*");
print "Top Player: @names[0]\n";
print "Top Player: $names[0]\n";
Although there is no difference between output, what is the actual difference while trying to access elements @ and $.
Also, while declaring arrays of strings, what is the difference between defining element in single quote vs double quote?