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