Skip to content

Instantly share code, notes, and snippets.

@ashgti
Created December 8, 2008 17:18
Show Gist options
  • Save ashgti/33522 to your computer and use it in GitHub Desktop.
Save ashgti/33522 to your computer and use it in GitHub Desktop.
class HelloWorld
def call(env)
[200, {"Content-Type" => "text/plain"}, ["Hello world!"]]
end
end
Rack::Handler::FastCGI.run(HelloWorld)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment