Created
August 2, 2013 22:36
-
-
Save MikeSilvis/6144034 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
1.9.3p448 :001 > def hello | |
1.9.3p448 :002?> def world | |
1.9.3p448 :003?> puts 'world' | |
1.9.3p448 :004?> end | |
1.9.3p448 :005?> puts 'hello' | |
1.9.3p448 :006?> end | |
=> nil | |
1.9.3p448 :007 > hello | |
hello | |
=> nil | |
1.9.3p448 :008 > world | |
world | |
=> nil | |
1.9.3p448 :009 > hello.world | |
hello | |
world |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment