9 lines
160 B
Plaintext
9 lines
160 B
Plaintext
![]() |
[source,ruby]
|
||
|
----
|
||
|
target = -5
|
||
|
num = 3
|
||
|
|
||
|
target =- num # Noncompliant: target = -3. Is that the intended behavior?
|
||
|
target =+ num # Noncompliant: target = 3
|
||
|
----
|