aboutsummaryrefslogtreecommitdiffstats
path: root/test.fp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-06-16 08:10:59 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-06-16 08:10:59 -0400
commitc546646cd46e9b523c3457fa6e867951ac37daba (patch)
tree9f0c75a45c6b0cbb5ca221209471bbfb60eed6cd /test.fp
parentd832f781dbc57b9a6223150db07343ea990fb611 (diff)
move list impl to forsp
Diffstat (limited to 'test.fp')
-rw-r--r--test.fp8
1 files changed, 8 insertions, 0 deletions
diff --git a/test.fp b/test.fp
index e4aba6c..2ae975d 100644
--- a/test.fp
+++ b/test.fp
@@ -11,6 +11,14 @@
($x x) $force
(10 emit) $cr
(print) $print
+ (4 +) $cell+
+ ($a $d 2 alloc $p
+ ^a ^p poke
+ ^d ^p cell+ poke
+ ^p
+ ) $cons
+ (peek) $car
+ (cell+ peek) $cdr
; if-stmt
($c $t $f c ^f ^t rot cswap $_ force) $if