mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-30 03:27:29 +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]);
|
|
}
|
|
}
|
|
}
|
|
}
|