Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.17 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. irb(main):001:0> x = 5
  2. => 5
  3. irb(main):002:0> if false
  4. irb(main):003:1> x = y
  5. irb(main):004:1> end
  6. => nil
  7. irb(main):005:0> puts x.inspect
  8. 5
  9. => nil
  10. irb(main):006:0>