Thread: arrays
View Single Post
  #2  
Old 06-01-2002, 02:23 AM
amonrabr amonrabr is offline
Scripter
Join Date: Nov 2001
Location: Brazil
Posts: 374
amonrabr is on a distinguished road
Re: arrays

Quote:
Originally posted by screen_name
i was wondering what the number before the array is for, ie


this.arrayname = 0/{-2,0,2,0}

??
its the number that its not an array..

this.a=1;
this.a={5,5,5}

so:
this.a = 1/{5,5,5}

this.a=1;
this.a[0]=5;
this.a[1]=5;
this.a[2]=5;
Reply With Quote