18 lines
191 B
Plaintext
18 lines
191 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
----
|
|
IF NOT x <> y THEN -- Noncompliant
|
|
-- ...
|
|
END IF;
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
IF x = y THEN
|
|
-- ...
|
|
END IF;
|
|
----
|