15 lines
163 B
Plaintext
15 lines
163 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
if (True): print("hello")
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
if (True):
|
||
|
print("hello")
|
||
|
----
|