summaryrefslogtreecommitdiff
path: root/pit/test/recurse.pit
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-08-10 21:49:57 -0400
committerLLLL Colonq <llll@colonq>2026-08-10 21:49:57 -0400
commit7b9c4a3ac265026d98624ac614eead866a190042 (patch)
tree2c5024583a047223ad7f5866d800554c9b81e191 /pit/test/recurse.pit
parentd70a6e5310607a25aabde85d0aa18948704f8f6a (diff)
pit: VM-style evaluation
Diffstat (limited to 'pit/test/recurse.pit')
-rw-r--r--pit/test/recurse.pit5
1 files changed, 5 insertions, 0 deletions
diff --git a/pit/test/recurse.pit b/pit/test/recurse.pit
new file mode 100644
index 0000000..8e1f784
--- /dev/null
+++ b/pit/test/recurse.pit
@@ -0,0 +1,5 @@
+(defun! foo ()
+ (print! 'hi)
+ (foo))
+
+(foo) \ No newline at end of file