aboutsummaryrefslogtreecommitdiffhomepage
path: root/std/Combinator.bruijn
diff options
context:
space:
mode:
authorMarvin Borner2022-08-12 15:26:03 +0200
committerMarvin Borner2022-08-12 15:26:03 +0200
commitcce495b3b4440997274ecab3d72ed61d6a50b007 (patch)
treecc56c7af514dd6ca31edb5360a6682ac5439af01 /std/Combinator.bruijn
parentb3cf49974e8af4e35ffc01fbe2f8e181d38de03a (diff)
Added infix operator support
This isn't compatible with the :test .. = .. syntax, therefore I removed it. They also don't have custom precedence/associativity support and aren't chainable right now.
Diffstat (limited to 'std/Combinator.bruijn')
-rw-r--r--std/Combinator.bruijn12
1 files changed, 6 insertions, 6 deletions
diff --git a/std/Combinator.bruijn b/std/Combinator.bruijn
index 2a6bb29..1606403 100644
--- a/std/Combinator.bruijn
+++ b/std/Combinator.bruijn
@@ -28,14 +28,14 @@ Z [[1 [1 1 0]] [1 [1 1 0]]]
i [0 S K]
-:test I = i i
+:test (I) (i i)
-:test K = i (i (i i))
+:test (K) (i (i (i i)))
-:test S = i (i (i (i i)))
+:test (S) (i (i (i (i i))))
-:test B = S (K S) K
+:test (B) (S (K S) K)
-:test C = S (S (K (S (K S) K)) S) (K K)
+:test (C) (S (S (K (S (K S) K)) S) (K K))
-:test W = S S (S K)
+:test (W) (S S (S K))