Skip to content

Instantly share code, notes, and snippets.

@eastmad
Created March 16, 2022 20:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eastmad/795ab155e8de6c8279abbacf0133d66e to your computer and use it in GitHub Desktop.
Save eastmad/795ab155e8de6c8279abbacf0133d66e to your computer and use it in GitHub Desktop.
require 'sinatra'
get '/hi' do
"<h1>Hello World!</h1 >This is <i style='color:red'>Sinatra</i> doing it my way"
end
get '/bye' do
"<h1>Good Night!</h1>This is <i style='color:blue'>Sinatra</i> signing out at #{Time.now}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment