Is it possible to escape that effect when assigning to a value:
irb(main):584:0>a = true
=>true
irb(main):584:0>
I have a code that has lots of assignings and when I am trying to test it I can not see the result because of all these returned values:
true
false
true
false
true
true
..