Computer Science Canada

.

Author:  hosamhelal [ Sat Jan 15, 2005 10:40 pm ]
Post subject:  .

ok...

Author:  Tony [ Sat Jan 15, 2005 11:43 pm ]
Post subject: 

eh... no arrays?

Author:  hosamhelal [ Sat Jan 15, 2005 11:53 pm ]
Post subject: 

tony wrote:
eh... no arrays?


I have arrays!

Author:  hosamhelal [ Sun Jan 16, 2005 12:01 am ]
Post subject: 

I have them!

Author:  Tony [ Sun Jan 16, 2005 12:04 am ]
Post subject: 

well you see... there are Tutorials... and they explain how to use everything, even Arrays. Oftentimes topics are covered by multiple authors more Arrays

Author:  hosamhelal [ Sun Jan 16, 2005 12:15 am ]
Post subject: 

tony wrote:
well you see... there are Tutorials... and they explain how to use everything, even Arrays. Oftentimes topics are covered by multiple authors more Arrays


Ok

Author:  SuperGenius [ Sun Jan 16, 2005 12:22 am ]
Post subject: 

hosamhelal wrote:

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:
code:

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.


: