Skip to content

Instantly share code, notes, and snippets.

@marekjelen
Created April 1, 2012 15:30
Show Gist options
  • Save marekjelen/2276401 to your computer and use it in GitHub Desktop.
Save marekjelen/2276401 to your computer and use it in GitHub Desktop.
Simple Sinatra
require 'sinatra/base'
class Application < Sinatra::Base
get '/' do
'Hello from Sinatra'
end
end
run Application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment