aboutsummaryrefslogtreecommitdiffstats
path: root/test.fp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-06-15 21:06:27 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-06-15 21:06:27 -0400
commit6be79eda61b3c64b38528c023845991a0cb4a274 (patch)
treeeb95a1980831b1e62641335ce1e7b7cbbfa9b044 /test.fp
parented78a6054c628e80240eff8ea9a06412774df094 (diff)
recursion; list via support.c
Diffstat (limited to 'test.fp')
-rw-r--r--test.fp23
1 files changed, 15 insertions, 8 deletions
diff --git a/test.fp b/test.fp
index 015f2ee..498a3eb 100644
--- a/test.fp
+++ b/test.fp
@@ -10,20 +10,27 @@
(nil eq) $null?
($x x) $force
(10 emit) $cr
-
- ; recursion via y-combinator
- ($f ($x (^x x) f) dup force) $Y ($g (^g Y)) $rec
+ (dup car swap cdr) $carcdr
; if-stmt
($c $t $f c ^f ^t rot cswap $_ force) $if
($f $t $c $fn ^f ^t ^c fn) $endif
; range
- ($self $body $start $end
- ^if (^start ^end eq) nil
- (^start body ^end ^start 1 + ^body self)
+ ($self $start $end
+ ^if (^start ^end eq)
+ ^nil
+ (^start ^end ^start 1 + self swap cons)
+ endif
+ ) $range
+
+ ($self $func $list
+ ^if (^list null?)
+ nil
+ (^list carcdr swap func ^func self)
endif
- ) rec $do
+ ) $foreach
- 70 65 ^emit do cr
+ 58 48 range
+ ^emit foreach cr
)