Sinatraの利用例
Using Sinatra
require 'sinatra'
get '/' do
'Hello world!'
end
get '/hello/:name' do
"Hello #{params[:name]}!"
end