15 lines
177 B
Plaintext
15 lines
177 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
println("Hello"); println("world!")
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
println("Hello")
|
||
|
println("world!")
|
||
|
----
|