string token[2];
string str = "Hello World";
for (int i = 0; i < 2; i++)
{
}
>> 'Hello'
>> 'World'
proto void Print(void var)
Prints content of variable to console/log.
proto int ParseString(out string tokens[])
Parses string into array of tokens returns number of tokens.