mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-01 07:45:07 +00:00
25 lines
466 B
ActionScript
25 lines
466 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestIncDec11
|
|
{
|
|
public function run():*
|
|
{
|
|
var f:Function = function():void {};
|
|
var slot:int = 0;
|
|
|
|
trace("++slot with result");
|
|
trace(++slot);
|
|
|
|
trace("--slot with result");
|
|
trace(--slot);
|
|
|
|
trace("++slot no result");
|
|
++slot;
|
|
|
|
trace("--slot no result");
|
|
--slot;
|
|
}
|
|
}
|
|
}
|