I watched this video. Why is a = a evaluated to nil if a is not defined?
a = a # => nil
b = c = q = c # => nil
|
I watched this video. Why is
|
||||
|
|
|
Ruby interpreter initializes a local variable with
The first assignment expression is not executed, but |
||||
|
|
|
In general, the expression |
|||
|
|