mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-06 05:17:22 +00:00
25 lines
355 B
ActionScript
25 lines
355 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestIncDec2
|
|
{
|
|
|
|
public function run():*
|
|
{
|
|
var a:* = 5;
|
|
|
|
trace("a++ with result");
|
|
trace(a++);
|
|
|
|
trace("a-- with result");
|
|
trace(a--);
|
|
|
|
trace("a++ no result");
|
|
a++;
|
|
|
|
trace("a-- no result");
|
|
a--;
|
|
}
|
|
}
|
|
}
|