■ブラウザに文字を表示する
■書式
print "Content-type: text/html\n\n"
print 表示する文字
■説明
ブラウザに文字を表示するにはContentヘッダーを送った後でprintを使い表示したい文字、数値などを指定します。
■サンプル
#!/usr/bin/ruby
print "Content-type: text/html\n\n"
print "Sample\n"