From 4fbcc9a5ac8b7507b37a4ad6f3f811126f37d102 Mon Sep 17 00:00:00 2001 From: crc Date: Sat, 24 Nov 2018 23:28:26 +0000 Subject: [PATCH] fix a stack comment in the matrix example FossilOrigin-Name: 5424441640ddb4b7c15658abf282625533bedcd47227bc901da14acd44cc286a --- example/Matrix.forth | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/Matrix.forth b/example/Matrix.forth index 42d20bf..3a713cf 100644 --- a/example/Matrix.forth +++ b/example/Matrix.forth @@ -11,7 +11,7 @@ couple rushedly written tests. :fill (na--a) [ store-next ] times ; ---reveal--- :matrix (nms--a) create initialise ; - :matrix (x1xn...nms--a) prepare matrix swap fill drop ; + :matrix (xn...x1nms-) prepare matrix swap fill drop ; }} ~~~