In 'Learning Perl' instruction for first program is
given:
#! /usr/bin/perl
print "Hello, world!\n";
$ chmod a+x my_ program
$ ./my_program
On my windows XP I believe it goes as
#!/usr/local/ActivePerl-5.8/bin/perl
print "Hello, world!\n";
Is that correct, and what comes next?
Fran
|