1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 20:10:49 +02:00

Update haxe.html.markdown

Correct the condition variable for "do statement always runs at least once" section
This commit is contained in:
sm4rk0
2015-05-19 18:17:35 +02:00
parent 48c24f7e45
commit f9032e0eca

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
/*