Source of: /ADI/cgi/hello_world.pl

#!/usr/bin/perl

# Required header that tells the browser how to render the text.
print "Content-Type: text/plain\n\n";

# Print a simple message to the display window.
print "Hello, World!\n";