Skip to content

Instantly share code, notes, and snippets.

@MikeSilvis
Created August 2, 2013 22:36
Show Gist options
  • Save MikeSilvis/6144034 to your computer and use it in GitHub Desktop.
Save MikeSilvis/6144034 to your computer and use it in GitHub Desktop.
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