зеркало из https://github.com/github/ruby.git
12 строки
198 B
Plaintext
12 строки
198 B
Plaintext
|
#!/usr/bin/env ruby
|
||
|
require "webrick/cgi"
|
||
|
|
||
|
class HelloCGI < WEBrick::CGI
|
||
|
def do_GET(req, res)
|
||
|
res["content-type"] = "text/plain"
|
||
|
res.body = "Hello, world.\n"
|
||
|
end
|
||
|
end
|
||
|
|
||
|
HelloCGI.new.start
|