mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-08-08 04:01:18 +00:00
24 lines
360 B
ActionScript
24 lines
360 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestIfInsteadSwitch
|
|
{
|
|
public function run():*
|
|
{
|
|
var a:int = 5;
|
|
if(a > 5)
|
|
{
|
|
if(a === 0)
|
|
{
|
|
trace("X");
|
|
}
|
|
}
|
|
if(a === 1)
|
|
{
|
|
return "A";
|
|
}
|
|
return "B";
|
|
}
|
|
}
|
|
}
|