ibrahimtencer (Ibrahim Tencer)
- Login: ibrahimtencer
- Email: landofdreams@gmail.com
- Registered on: 03/12/2012
- Last sign in: 03/12/2012
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
03/12/2012
-
11:52 PM Ruby Bug #6132 (Rejected): Assignments don't happen correctly in "if" modifiers
- This works:
if lo = 3
la = lo
end
but this does not:
(la = lo) if (lo = 3)
It raises "NameError: undefined local variable or method `lo' for main:Object." But if you look at the values afterwards you get lo -> 3, la -> nil.