Last active
July 18, 2016 18:52
-
-
Save sebabelmar/03a7b01338e7dd5e3b574ce429c37bdb 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
table_array = [ | |
["brand", "year", "color"], | |
["specialized", 2001, "blue"], | |
["bianchi", 1999, "silver"] , | |
["yetti", 2016, "red"] | |
] | |
# Driver Code | |
instantiate_bikes(table_array) #=> [<Bike>, <Bike>, <Bike>, ...] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment