Possible Duplicate:
Why a = a is nil in Ruby?
There's a, shall we say, "odd phenomenon" in Ruby with using undefined variables. It's like this:
# irb session follows
#
foo # undefined local variable or method 'foo'
bar # same for 'bar'
foo = bar # still same for 'bar'
foo = foo # nil - HUH?
foo # is now set to nil!?
Why can I assign an undefined variable to itself in Ruby and get nil?
Note that I'm using Ruby 1.9.3 here. I'm not sure what other versions this may be true in.
(Thanks to Gary Bernhardt for demonstrating this in his hilarious talk.)
foo = foois evaluated in two steps. The first one "declares" the variable with a default value, and the second one assigns it to itself. – Inerdial Feb 2 at 22:12