View Single Post
  #2  
Old 05-06-2007, 11:49 AM
Chandler Chandler is offline
Banned
Join Date: Jan 2007
Posts: 656
Chandler will become famous soon enough
Weird
HTML Code:
function onCreated()
{
  temp.myARRAY = {"hey", "hi", "test"};
  for (temp.currentWord: temp.myARRAY)
  {
    printf(temp.currentWord);
    printf("Called");
  }
  printf("Done");
}
It displays each one that is called.

Also, why're you using printf?
Reply With Quote