Add test.

This commit is contained in:
Ryan Stecker 2014-08-26 14:58:58 -05:00
parent 74908098f4
commit 302dc1cb8a

View File

@ -0,0 +1,20 @@
new String:oldArray[][] =
{
"string",
"string2",
};
char newArray[][] =
{
"another string",
"more strings",
};
native Print( const String:string[] );
public OnPluginStart()
{
Print( oldArray[ 0 ] );
Print( newArray[ 0 ] );
}