Skip to content

Instantly share code, notes, and snippets.

@nsnt
Last active August 29, 2015 13:57
Show Gist options
  • Save nsnt/9546330 to your computer and use it in GitHub Desktop.
Save nsnt/9546330 to your computer and use it in GitHub Desktop.
hello_world.rb
require "sinatra"
require "mysql2"
require "cf-autoconfig"
class HelloWorld < Sinatra::Base
get "/" do
"Hello, World!"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment