CGI Ruby

#!/usr/bin/ruby
# closed_cgi.rb
require 'cgi'
c = CGI.new("html4")
c.out do
  c.html do
    c.h1 { 'Sorry, the Web is closed.' }
  end
end
# Content-Type: text/html
# Content-Length: 137
# #   "http://www.w3.org/TR/html4/strict.dtd">

Sorry, the Web is closed.