Skip to content

Instantly share code, notes, and snippets.

@hugoabonizio
Created September 14, 2015 02:17
Show Gist options
  • Save hugoabonizio/865af9c2c3310a7dc0f9 to your computer and use it in GitHub Desktop.
Save hugoabonizio/865af9c2c3310a7dc0f9 to your computer and use it in GitHub Desktop.
Simple Sinatra app
require 'sinatra'
get '/:name' do
"Hello world, #{params[:name]}!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment