#!/usr/local/bin/ruby
##
# @file cgiMinimal.rb
# @author Mitch Richling <http://www.mitchr.me/>
# @Copyright Copyright 2006 by Mitch Richling. All rights reserved.
# @brief Super simple cgi example in Ruby.@EOL
# @Keywords example ruby cgi
# @Std Ruby 1.8
print("Content-type: text/html\n\n")
print("<html><body>Hello, World!</body></html>\n")