mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-24 10:01:38 +00:00
Merge pull request #1103 from sm4rk0/sm4rk0-patch-1
[haxe/en] Correct the condition variable
This commit is contained in:
commit
4d15063710
@ -323,7 +323,7 @@ class LearnHaxe3{
|
|||||||
var l = 0;
|
var l = 0;
|
||||||
do{
|
do{
|
||||||
trace("do statement always runs at least once");
|
trace("do statement always runs at least once");
|
||||||
} while (i > 0);
|
} while (l > 0);
|
||||||
|
|
||||||
// for loop
|
// for loop
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user