Skip to content

Instantly share code, notes, and snippets.

@eastmad
Created March 16, 2022 20:53
Embed
What would you like to do?
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