8 lines
187 B
APL
8 lines
187 B
APL
|
|
array←m n ⍴ 0 ⍝ array of zeros with shape of m by n.
|
|||
|
|
|
|||
|
|
array[1;1]←73 ⍝ assign a value to location 1;1.
|
|||
|
|
|
|||
|
|
array[1;1] ⍝ read the value back out
|
|||
|
|
|
|||
|
|
⎕ex 'array' ⍝ erase the array
|