# frozen_string_literal: true require 'rack' app = Rack::Builder.new do |builder| builder.use Rack::Lint builder.run (proc do |env| pp env [200, {"content-type" => "text/html"}, ["p","i","s","s"]] end) end run app