Created
August 28, 2013 19:01
-
-
Save mmay/6369888 to your computer and use it in GitHub Desktop.
This file contains 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
# "Stuff" is a java object with a default constructor | |
# In the style of ruby open struct | |
stuff = Stuff.new(attr1: "value1", attr2: "value2") | |
# VS | |
# typcial get/set style | |
stuff = Stuff.new | |
stuff.attr1 = "value1" | |
stuff.attr2 = "value2" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment