From 41989a2ad51b15bf512b81f2c147070ba8a28ef8 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Sat, 17 Aug 2024 19:14:47 +0100 Subject: each returns array of loop values --- tests/each2.bth | 1 + tests/each2.out | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 tests/each2.bth create mode 100644 tests/each2.out (limited to 'tests') diff --git a/tests/each2.bth b/tests/each2.bth new file mode 100644 index 0000000..100db39 --- /dev/null +++ b/tests/each2.bth @@ -0,0 +1 @@ +(say (each (a [1 2 3]) (say a) a)) diff --git a/tests/each2.out b/tests/each2.out new file mode 100644 index 0000000..7777a40 --- /dev/null +++ b/tests/each2.out @@ -0,0 +1,4 @@ +1 +2 +3 +[1 2 3] -- cgit v1.2.3