RosettaCodeData/Task/Create-a-two-dimensional-array-at-runtime/Forth/create-a-two-dimensional-array-at-runtime-1.fth
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

8 lines
182 B
Forth

: cell-matrix
create ( width height "name" ) over , * cells allot
does> ( x y -- addr ) dup cell+ >r @ * + cells r> + ;
5 5 cell-matrix test
36 0 0 test !
0 0 test @ . \ 36