7 lines
173 B
Plaintext
7 lines
173 B
Plaintext
[source,csharp,diff-id=1,diff-type=compliant]
|
|
----
|
|
for (int i = 0; i < 10; i++) // Compliant: the condition is true at least once, the loop will execute
|
|
{
|
|
// ...
|
|
}
|
|
---- |