mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-24 03:05:55 +00:00
22 lines
208 B
ActionScript
22 lines
208 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestDecl2
|
|
{
|
|
public function run():*
|
|
{
|
|
var k:int = 0;
|
|
var i:int = 5;
|
|
i = i + 7;
|
|
if (i == 5)
|
|
{
|
|
if (i < 8)
|
|
{
|
|
k = 6;
|
|
}
|
|
}
|
|
k = 7;
|
|
}
|
|
}
|
|
}
|