Guest User

Untitled

a guest
Feb 21st, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. class HelloWorld
  2. def call(env)
  3. [200, {"Content-Type" => "text/plain"}, ["Hello world!"]]
  4. end
  5. end
  6.  
  7. Rack::Handler::FastCGI.run(HelloWorld)
Add Comment
Please, Sign In to add comment