Skip to content

Instantly share code, notes, and snippets.

@ohta-rh
Created February 23, 2013 06:16
Show Gist options
  • Save ohta-rh/5018678 to your computer and use it in GitHub Desktop.
Save ohta-rh/5018678 to your computer and use it in GitHub Desktop.
#coding: utf-8
require "rubygems"
class Hoge
attr_reader :a, :b
#aとbをインスタンス変数に格納する
def initialize a, b
@a = a
@b = b
end
#aとbを計算する
def calc
@a + @b
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment