mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-24 02:06:10 +00:00
13 lines
163 B
ActionScript
13 lines
163 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestRest
|
|
{
|
|
public function run(firstp:int, ... restval):int
|
|
{
|
|
trace("firstRest:" + restval[0]);
|
|
return firstp;
|
|
}
|
|
}
|
|
}
|