Skip to content

Instantly share code, notes, and snippets.

@alfanick
Created August 1, 2011 20:19
Show Gist options
  • Save alfanick/1118899 to your computer and use it in GitHub Desktop.
Save alfanick/1118899 to your computer and use it in GitHub Desktop.
require "sinatra"
get '/' do
'Hello world!'
end
get '/hello/:name' do
"Hello #{params[:name]}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment