sourcemod/sourcepawn/compiler/tests/ok-static-stocks-2.sp

8 lines
87 B
SourcePawn
Raw Normal View History

static stock const X = 5;
stock static const Y = 6;
public main()
{
return X + Y;
}