4.3. EnvironmentOn the command line one can type:
Example 4-1. examples/intro/hello_world.pl #!/usr/bin/perl use strict; use warnings; print "Hello world\n"; print 42, "\n"; On unix you can also make it executable: chmod u+x hello_world.pl and then run like: ./hello_world.pl A couple of notes
|
Follow me: