diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/each2.bth | 1 | ||||
-rw-r--r-- | tests/each2.out | 4 |
2 files changed, 5 insertions, 0 deletions
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] |