1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2024-09-07 12:54:31 +00:00

Update looping examples

This commit is contained in:
David Schmenk 2024-07-23 17:26:12 -07:00
parent 60b526bcb0
commit 12cab55271
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -11,7 +11,7 @@
(RETURN I)
)))
(FORLOOP (LAMBDA (I M)
(FOR I 1 1 (< I M) (PRIN I))
(FOR I I 1 (< I M) (PRIN I))
))
)