start | all-pages
arraycreation
You can create an array by passing the count and values on the
stack to +a:make . For the previous example of an array of 67,
102, and 33, this would look like:
#33 #102 #67 #3 a:make
This is limited by the amount of space available on the data
stack. For longer arrays, create them using the manual model on
the previous block or write a custom creating word.
For arrays not needed long term you can use of +a:make/temp
instead. This will place the array in a rotating buffer instead
of the main system memory.