User Tools

Site Tools


de:arrays

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

de:arrays [2016/01/01 22:37]
de:arrays [2020/02/28 10:46] (current)
Line 1: Line 1:
 +===== Arrays =====
 +Arrays are allocated using the DIM command or resided using Redim.  They may hold numeric or string data.  Access to specific elements in an array is accomplished by using square brackets along with the integer offset of the element, starting from zero.  Arrays may also be dimensioned and accessed using two dimensions.\\
 +Array sizes may also be extracted using [?] [?,] and [,?] on the end of the array variable.
 +==== Example ====
 +<code>
 +print myarray[4]
 +</code>
 +will display on the screen the fifth element in 'myarray'
  
de/arrays.txt ยท Last modified: 2020/02/28 10:46 (external edit)