my $scalar = 1, 2, 3; # interpreted as: (my $scalar = 1), 2, 3; my @letters = 'a', 'b', 'c'; # interpreted as: (my @letters = 'a'), 'b', 'c';