I think there are two ways to declare an array:
my @a1 = (1, 2, 3);my @a2 = [1, 2, 3];
What is the difference?                                           

Reply via email to