sourcemod/sourcepawn/compiler/tests/ok-new-dynamic-array-syntax.sp

11 lines
132 B
SourcePawn
Raw Normal View History

2014-11-08 11:48:13 +01:00
native printnum(num);
public main()
{
new x = 4;
new y = 8;
int[][] v = new int[4][8];
v[2][3] = 9;
printnum(v[2][3]);
}