User talk:Fowlplay4: Difference between revisions

From Graal Bible
(howdy)
 
(No difference)

Latest revision as of 01:08, 20 November 2006

a lil something something..

function onCreated() {
 showcharacter();
 this.chat = "Hello World!";
 this.nick = "Fung Si Yan";
 DoForExample();
}
function DoForExample() {
 temp.array = {
  1,this.nick,"string"
 };
 for(temp.var: temp.array) {
  echo("temp.array[" @ 0 + temp.ind @ "]" SPC temp.var);
  temp.ind++;
 }
 /*
  RC Output:
  temp.array[0] 1
  temp.array[1] Fung Si Yan
  temp.array[2] string
 */ 
}