Skip to content

Instantly share code, notes, and snippets.

@smathy
Created March 9, 2016 01:14
Show Gist options
  • Save smathy/af02a49942c9b6bfef8f to your computer and use it in GitHub Desktop.
Save smathy/af02a49942c9b6bfef8f to your computer and use it in GitHub Desktop.
[1] pry(main)> def user_name; "foo"; end
=> :user_name
[2] pry(main)> defined? user_name
=> "method"
[3] pry(main)> if false
[3] pry(main)* user_name = 123
[3] pry(main)* end
=> nil
[4] pry(main)> defined? user_name
=> "local-variable"
[5] pry(main)>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment