Created
September 14, 2015 02:17
-
-
Save hugoabonizio/865af9c2c3310a7dc0f9 to your computer and use it in GitHub Desktop.
Simple Sinatra app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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