From 39ac935c4f2fefa0d63ed8e87bb7142a9c458188 Mon Sep 17 00:00:00 2001 From: HorseMD Date: Tue, 18 Nov 2014 12:19:12 +0000 Subject: Reword arrays introduction. --- forth.html.markdown | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/forth.html.markdown b/forth.html.markdown index 5db7b51f..570e12ed 100644 --- a/forth.html.markdown +++ b/forth.html.markdown @@ -139,7 +139,10 @@ WATER-BOILING-POINT . \ 100 ok \ ----------------------------------- Arrays ----------------------------------- -\ Set up an array of length 3: +\ Creating arrays is similar to variables, except we need to allocate more +\ memory to them. + +\ You can use `2 cells allot` to create an array that's 3 cells long: variable mynumbers 2 cells allot \ ok \ Initialize all the values to 0 -- cgit v1.2.3