1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 03:50:32 +02:00

Merge pull request #507 from Jakehp/patch-1

Issue #163 fix
This commit is contained in:
Nami-Doc
2014-01-30 11:02:58 -08:00

View File

@@ -191,7 +191,7 @@ public class LearnJava {
{
//System.out.println(fooWhile);
//Increment the counter
//Iterated 99 times, fooWhile 0->99
//Iterated 100 times, fooWhile 0,1,2...99
fooWhile++;
}
System.out.println("fooWhile Value: " + fooWhile);