class CGI

def print(*options)

cgi.print # default: cgi.print == $DEFAULT_OUTPUT.print
cgi = CGI.new

Print an argument or list of arguments to the default output stream
def print(*options)
  stdoutput.print(*options)
end