Guest User

Untitled

a guest
May 24th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. # Simple rack app
  2. require 'rubygems'
  3. require 'thin'
  4. app = Proc.new{ [200, { "Content-Type" => "text/html"}, ["Hello World"]]}
  5. Rack::Handler::Thin.run(app, :Port => 4000)
Add Comment
Please, Sign In to add comment