20 lines
240 B
Plaintext
20 lines
240 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
----
|
|
IF something.
|
|
IF somethingElse.
|
|
WRITE / 'hello'.
|
|
ENDIF.
|
|
ENDIF.
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
IF something and somethingElse.
|
|
WRITE / 'hello'.
|
|
ENDIF.
|
|
----
|