>Yes. The following program contains "block by itself":
> {
> print "Entering script...\n";
> print "Exiting script...\n";
> }
>The following program does not contain "block by itself":
> #!/usr/bin/perl -w
> {
> print "Entering script...\n";
> print "Exiting script...\n";
> }
>since it is modified/accompanied by #!-line.
Wrong.
--tom
Thread Previous
|
Thread Next