mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 20:04:37 +00:00
17 lines
233 B
ActionScript
17 lines
233 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestActivationArguments
|
|
{
|
|
public function run():*
|
|
{
|
|
var func:Function = function(a:int, b:int):int {
|
|
return a + b;
|
|
}
|
|
if (arguments.length > 0){
|
|
trace(arguments[0]);
|
|
}
|
|
}
|
|
}
|
|
}
|