Created
December 10, 2016 22:39
-
-
Save fridgerator/890bd8d5f9fdc19f2e7445cbaf3fb5f0 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 Thing | |
property butts : String? | |
def butts=(val) | |
puts "setting butts" | |
@butts = val | |
end | |
end | |
t = Thing.new | |
t.butts = "I like big" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment