
-----------------------------------
hosamhelal
Sat Jan 15, 2005 10:40 pm

.
-----------------------------------
ok...

-----------------------------------
Tony
Sat Jan 15, 2005 11:43 pm


-----------------------------------
eh... no arrays?

-----------------------------------
hosamhelal
Sat Jan 15, 2005 11:53 pm


-----------------------------------
eh... no arrays?

I have arrays!

-----------------------------------
hosamhelal
Sun Jan 16, 2005 12:01 am


-----------------------------------
I have them!

-----------------------------------
Tony
Sun Jan 16, 2005 12:04 am


-----------------------------------
well you see... there are everything, even [url=http://www.compsci.ca/v2/viewtopic.php?t=366]Arrays. Oftentimes topics are covered by multiple authors [url=http://www.compsci.ca/v2/viewtopic.php?t=1117]more Arrays

-----------------------------------
hosamhelal
Sun Jan 16, 2005 12:15 am


-----------------------------------
well you see... there are everything, even 

Ok

-----------------------------------
SuperGenius
Sun Jan 16, 2005 12:22 am


-----------------------------------

 how would i seperate each one differently; so if it's that, it will draw that oval, etc.

array elements are addressed by an 'index number"

ex:

for a = 1 ..10
     myarray(a) = a
end for


so:
myarray(1) = 1
myarray(2) = 2
myarray(3) = 3
and so on. 

The number in the brackets must be an integer. It could be a constant or a variable.
