Skip to content

Instantly share code, notes, and snippets.

@2get
Created October 3, 2012 04:26
Show Gist options
  • Save 2get/3824994 to your computer and use it in GitHub Desktop.
Save 2get/3824994 to your computer and use it in GitHub Desktop.
Hello World. Using Sinatra
require 'rubygems'
require 'sinatra'
get '/' do
'Hello World.'
end
run Sinatra::Application
source :rubygems
gem 'sinatra'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment