MamaLoca
Programmer
- Aug 29, 2005
- 48
Hey fellas,
I'm trying to learn PERL and I keep hitting brick walls. So I thought I'd come to the best!
Please let me know what is wrong with this code
if I throw in use strict; it gives me an internal error. Without it it works just fine. Perhaps I place it in the wrong location in my script, It should be first right after the shabang I am guessing? :/
Life would be so much easier if I only had the source code.
I'm trying to learn PERL and I keep hitting brick walls. So I thought I'd come to the best!
Please let me know what is wrong with this code
Code:
#!/usr/bin/perl -w
use CGI;
use diagnostics;
$cgi=new CGI;
print $cgi->header;
print "Here I is";
if I throw in use strict; it gives me an internal error. Without it it works just fine. Perhaps I place it in the wrong location in my script, It should be first right after the shabang I am guessing? :/
Life would be so much easier if I only had the source code.