We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1a0c4a commit 989eb9aCopy full SHA for 989eb9a
STDLIB/default-rules.lm
@@ -7,11 +7,14 @@ macro ('match t ps) (tail(
7
(match-pats( (uuid term) ps (fail PatternMatchFailure_s) ))
8
));
9
10
-macro ('match-pats( term ps remainder )) (
+macro ('match-pats( term () remainder )) (
11
+ remainder
12
+);
13
+
14
+macro ('match-pats( term (ps (lhs rhs)) remainder )) (
15
remainder
16
);
17
-#macro ('match-pats( term matched return () )) ();
18
#macro ('match-pats( term matched return (ps (lhs rhs)) )) (
19
# (match-pats( term matched return ps ))
20
# (if matched () (
0 commit comments