30 lines
399 B
Plaintext
30 lines
399 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
----
|
|
$i = 0;
|
|
loop:
|
|
echo("i = $i");
|
|
$i++;
|
|
if ($i < 10){
|
|
goto loop;
|
|
}
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
for ($i = 0; $i < 10; $i++){
|
|
echo("i = $i");
|
|
}
|
|
----
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|