From 629416ffb6e30836f4de4a0f2401ccd66b4ce4a6 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Mon, 1 Jul 2024 20:49:14 +0100 Subject: add numeric for form --- tests/for.bth | 2 ++ tests/for.out | 10 ++++++++++ 2 files changed, 12 insertions(+) create mode 100644 tests/for.bth create mode 100644 tests/for.out (limited to 'tests') diff --git a/tests/for.bth b/tests/for.bth new file mode 100644 index 0000000..4d5f5b1 --- /dev/null +++ b/tests/for.bth @@ -0,0 +1,2 @@ +(for (x 10) + (say (* x x))) diff --git a/tests/for.out b/tests/for.out new file mode 100644 index 0000000..9b81ce7 --- /dev/null +++ b/tests/for.out @@ -0,0 +1,10 @@ +0 +1 +4 +9 +16 +25 +36 +49 +64 +81 -- cgit v1.2.3