Skip to content

Instantly share code, notes, and snippets.

@mizutaki
Created October 17, 2014 13:31
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 mizutaki/7045126f907511fcebea to your computer and use it in GitHub Desktop.
Save mizutaki/7045126f907511fcebea to your computer and use it in GitHub Desktop.
require 'sinatra/base'
class MyApp < Sinatra::Base
get '/' do
"Hello from MyApp!"
end
# $0は実行されるファイル
#__FILE__==0$は現在のファイル
run! if __FILE__ == $0
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment