# app.ru app = lambda {|env| request = Rack(env) p request [200, {'Content-Type => 'text/html'}, "hello"] } run app # shell $ rackup app.ru
# app.ru app = lambda {|env| request = Rack(env) p request [200, {'Content-Type => 'text/html'}, "hello"] } run app # shell $ rackup app.ru