15 lines
134 B
Plaintext
15 lines
134 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
foo(); bar();
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
foo();
|
||
|
bar();
|
||
|
----
|