mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-26 08:57:26 +00:00
20 lines
199 B
ActionScript
20 lines
199 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestWhileAnd
|
|
{
|
|
public function run():*
|
|
{
|
|
var a:int = 5;
|
|
var b:int = 10;
|
|
while (a < 10 && b > 1)
|
|
{
|
|
a++;
|
|
b--;
|
|
}
|
|
a = 7;
|
|
b = 9;
|
|
}
|
|
}
|
|
}
|