5 lines
154 B
Ruby
5 lines
154 B
Ruby
|
|
require 'webrick'
|
||
|
|
WEBrick::HTTPServer.new(:Port => 80).tap {|srv|
|
||
|
|
srv.mount_proc('/') {|request, response| response.body = "Goodbye, World!"}
|
||
|
|
}.start
|