Skip to content

Instantly share code, notes, and snippets.

@tatsuosakurai
Created September 17, 2011 04:57
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 tatsuosakurai/1223643 to your computer and use it in GitHub Desktop.
Save tatsuosakurai/1223643 to your computer and use it in GitHub Desktop.
インスタンス変数
class User
def set_name(str)
@name = str
end
def name()
p @name
end
end
u = User.new
u.set_name 'sakurai'
u.name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment