1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-10 16:54:33 +02:00

Merge pull request #1103 from sm4rk0/sm4rk0-patch-1

[haxe/en] Correct the condition variable
This commit is contained in:
Levi Bostian
2015-05-19 19:47:55 -05:00

View File

@@ -323,7 +323,7 @@ class LearnHaxe3{
var l = 0;
do{
trace("do statement always runs at least once");
} while (i > 0);
} while (l > 0);
// for loop
/*