Sintra で書捨てWEBアプリ
# -*- coding: utf-8 -*- require 'sinatra' get '/hello/:name' do # locals でローカル変数をバインド erb :index, locals: {name: params[:name]} end __END__ @@index hello, <%= name %>!