-
Notifications
You must be signed in to change notification settings - Fork 2
testing markdown
Douglas G. Allen edited this page Jan 31, 2015
·
9 revisions
- Lower cost
- The new version of this product costs significantly less than the previous one!
- Easier to use
- We've changed the product so that it's much easier to use!
- Safe for kids
- You can leave your kids alone in a room with this product and they won't get hurt (not a guarantee).
Rubylearning Day 02:: Beginning Sinatra
require 'sinatra'
get '/' do
'Hello Rubyists'
end
require 'sinatra'
before do
set :display_string, 'Welcome from RubyLearning again!'
end
get '/' do
settings.display_string
end