Skip to content

Commit 083fb09

Browse files
committed
up
1 parent d21f61a commit 083fb09

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

examples/combinators.scm

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(define (S x y z) (x z (y z)))
2+
(define (K x y) x)
3+
(define (I x) x)
4+
5+
(I)
6+
(K I)
7+
(S K I)

0 commit comments

Comments
 (0)