Add test.
This commit is contained in:
@@ -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 ] );
|
||||
}
|
||||
Reference in New Issue
Block a user