Created
December 14, 2013 04:33
-
-
Save futoase/7955708 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Hoge | |
| attr_accessor :hoge | |
| def initialize; end | |
| end | |
| > h = Hoge.new | |
| > h.hoge = 3 | |
| > h.hoge | |
| > 3 |
futoase
commented
Dec 14, 2013
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment