18 lines
188 B
Plaintext
18 lines
188 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
----
|
|
IF expression THEN
|
|
RETURN TRUE;
|
|
ELSE
|
|
RETURN FALSE;
|
|
END IF;
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
RETURN expression;
|
|
----
|