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