in reply to script syntax errors
Looks to me like you are trying to use C style comments. /* ...*/. This is not the right syntax in Perl, in Perl you denote comments by #. Anything after a # till the end of the line is ignored ... unless of course the # is inside a string or some other construct, similar to // in C.
There is no counterpart of /*...*/ in Perl.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
| A reply falls below the community's threshold of quality. You may see it by logging in. |