Message-ID: <
20030509151753.GO49820@geeknest.com>
p4raw-id: //depot/perl@19461
=item * Interpolation
-Double-quoted strings may no longer end with an unescaped $ or @.
+Double-quoted strings may no longer end with an unescaped $.
$foo = "foo$";
- $bar = "bar@";
- print "foo is $foo, bar is $bar\n";
+ print "foo is $foo\n";
- # perl4 prints: foo is foo$, bar is bar@
+ # perl4 prints: foo is foo$
# perl5 errors: Final $ should be \$ or $name
Note: perl5 DOES NOT error on the terminating @ in $bar