in reply to Re^2: Why is this script giving syntax errors?
in thread Why is this script giving syntax errors?
"The end of the script" is just part of the truth. It actually is "The end of a scope":
$ perl -MO=Deparse -e'print $a' print $a; -e syntax OK $ perl -MO=Deparse -e'{print $a}' { print $a; } -e syntax OK $ perl -MO=Deparse -e'{print $a}print $a' { print $a; } print $a; -e syntax OK
|
|---|