Perl

hello_world

#!/usr/bin/perl

print "Hello, world!\n";

make exicutable

$ chmod a+x my_program

and run

$ ./hello_world