Skip to content

Instantly share code, notes, and snippets.

@tomoyamkung
Created August 8, 2012 05:15
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 tomoyamkung/3292327 to your computer and use it in GitHub Desktop.
Save tomoyamkung/3292327 to your computer and use it in GitHub Desktop.
[Ruby]スクリプトのテンプレート
#! ruby
#-*- encoding: utf-8 -*-
class Hoge
def initialize
end
def execute
end
end
if __FILE__ == $0
obj = Hoge.new
obj.execute
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment