mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-28 07:26:12 +00:00
12 lines
165 B
ActionScript
12 lines
165 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestParamNames
|
|
{
|
|
public function run(firstp:int, secondp:int, thirdp:int) : int
|
|
{
|
|
return firstp + secondp + thirdp;
|
|
}
|
|
}
|
|
}
|