- or download this
#!/usr/bin/perl -w
print "Hello, world!\n";
- or download this
C:\Perl64\bin>Hello_world_test.pl
Hello, world!
- or download this
#!/usr/bin/perl -w
use strict;
print "Hello, world!\n";
- or download this
C:\Perl64\bin>Hello_world_test.pl
Can't locate strict.pm in @INC (@INC contains: .) at C:\Perl64\bin\Hel
+lo_world_t
est.pl line 2.
BEGIN failed--compilation aborted at C:\Perl64\bin\Hello_world_test.pl
+ line 2.