Created
March 10, 2015 15:55
-
-
Save blaisethomas/bc9227dce6270f9f38f0 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
Ruby is a CLASS based, OBJECT oriented language. Every _______ is an instance of a _______. | |
Ruby sees everything, from simple values (strings, integers), to complex data structures (arrays), as _________. | |
Ruby OBJECTS are most often handled via ________ that represent them. | |
Every OBJECT is capable of understanding a certain set of MESSAGES. | |
These MESSAGES correspond directly to a _________ - a named, executable routine, whose execution the object has the ability to trigger. | |
Message sending via the dot operator: ________.__________ . | |
METHODS can also take _________ (which are also OBJECTS). Ususally in parentheses. | |
ARGUMENT, METHOD, VARIABLE, CLASS, OBJECT, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment