Actions
Feature #6224
closedMake variables in if/unless conditions available to conditional statements
Feature #6224:
Make variables in if/unless conditions available to conditional statements
Description
I propose to make below code work
do_something(a) if a = condition
Above code should work exactly same as
if a = condition
do_something(a)
end
If there is a reason behind why the first case does not work, please let me know.
Thank you.
Guoliang Cao
Actions