Skip to content

Check UseValueCompare

github-actions[bot] edited this page Mar 6, 2024 · 2 revisions

Compare strings and bignums with the equality-operators, instead of the _is/_isnt operators.

Noncompliant Code Example

a _is "test"

Compliant Solution

a = "test"

NOTE: This page is generated. Any changes made to this page through the wiki will be lost in the future.