Perl



examples/linux/hello_world.pl
#!/usr/bin/env perl

print "Hello World\n";

$ perl hello_world.pl
$ chmod u+x hello_world.pl
$ ./hello_world.pl