mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-24 19:34:33 +00:00
28 lines
297 B
ActionScript
28 lines
297 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestWhileContinue
|
|
{
|
|
public function run():*
|
|
{
|
|
var a:* = 5;
|
|
while (true)
|
|
{
|
|
if (a == 9)
|
|
{
|
|
if (a == 8)
|
|
{
|
|
continue;
|
|
}
|
|
if (a == 9)
|
|
{
|
|
break;
|
|
}
|
|
trace("hello 1");
|
|
}
|
|
trace("hello2");
|
|
}
|
|
}
|
|
}
|
|
}
|