mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-08 07:05:06 +00:00
20 lines
187 B
ActionScript
20 lines
187 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestIfElse
|
|
{
|
|
public function run():*
|
|
{
|
|
var a:* = 5;
|
|
if (a == 7)
|
|
{
|
|
trace("onTrue");
|
|
}
|
|
else
|
|
{
|
|
trace("onFalse");
|
|
}
|
|
}
|
|
}
|
|
}
|