mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 10:34:58 +00:00
15 lines
221 B
ActionScript
15 lines
221 B
ActionScript
class com.jpexs.MyTest {
|
|
private var i:Number=5;
|
|
static var k:Number=27;
|
|
|
|
function test():Number
|
|
{
|
|
trace("hello");
|
|
return 5;
|
|
}
|
|
static function testS():Number
|
|
{
|
|
trace("hi");
|
|
return 88;
|
|
}
|
|
} |