Skip to content

Instantly share code, notes, and snippets.

@allenan
Created May 30, 2015 15:46
Show Gist options
  • Save allenan/c7656f8f20df8ffc5010 to your computer and use it in GitHub Desktop.
Save allenan/c7656f8f20df8ffc5010 to your computer and use it in GitHub Desktop.
app.rb
require 'sinatra' // (1)

get '/hi' do // (2)
  "Hello World!" // (3)
end
  1. Library import

  2. URL mapping

  3. Content for response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment