Skip to content

Instantly share code, notes, and snippets.

Created March 4, 2012 12:25
Show Gist options
  • Save anonymous/1972783 to your computer and use it in GitHub Desktop.
Save anonymous/1972783 to your computer and use it in GitHub Desktop.
sinatra hello world
require 'rubygems'
require 'sinatra'
get '/' do
"Hello, World!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment