mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-07 10:28:34 +00:00
15 lines
78 B
SourcePawn
15 lines
78 B
SourcePawn
class X
|
|
{
|
|
};
|
|
|
|
f(...)
|
|
{
|
|
return 3
|
|
}
|
|
|
|
public main()
|
|
{
|
|
new X:x;
|
|
return f(x);
|
|
}
|