Skip to content

Latest commit

 

History

History
46 lines (41 loc) · 971 Bytes

colist.adoc

File metadata and controls

46 lines (41 loc) · 971 Bytes
require 'sinatra' // (1)

get '/hi' do  # (2)
  "Hello World!" ;; (3)
end
  1. Library import

  2. URL mapping

  3. Content for response

require 'sinatra' // (1)

get '/hi' do  # (2)
  "Hello World!" ;; (3)
end
Description
  1. Library import

  2. URL mapping

  3. Content for response

require 'sinatra' // (1)

get '/hi' do  # (2)
  "Hello World!" ;; (3)
end
  1. Library import

  2. URL mapping

  3. Content for response