sourcemod/sourcepawn/compiler/tests/ok-static-stocks-2.sp
2015-01-04 12:04:51 -08:00

8 lines
87 B
SourcePawn

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