On 8/28/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
+Elsewhere it is equivalent to a parenthesisized list of strings:
+C<< ('foo','bar') >>.  Since parentheses are generally reserved just for
+precedence grouping, they merely autointepolate in list context.  Therefore
+
+    @a = 1, < 2 3 >, 4;
+
+is equivalent to
+
+    @a = 1, 2, 3, 4;

Shouldn't this be
   @a = 1, '2', '3', 4;

--
Markus Laire

Reply via email to