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