summaryrefslogtreecommitdiff
path: root/rust/sample/test02/input
diff options
context:
space:
mode:
Diffstat (limited to 'rust/sample/test02/input')
-rw-r--r--rust/sample/test02/input6
1 files changed, 0 insertions, 6 deletions
diff --git a/rust/sample/test02/input b/rust/sample/test02/input
deleted file mode 100644
index 81a0443..0000000
--- a/rust/sample/test02/input
+++ /dev/null
@@ -1,6 +0,0 @@
-(def pair (lam (a b f) (f a b)))
-
-(def fst (lam p (p (lam ( a b) a))))
-(def snd (lam p (p (lam ( a b) b))))
-
-(fst (snd (pair 1 (pair 2 0))))