diff options
Diffstat (limited to 'src/sexp/case.rs')
-rw-r--r-- | src/sexp/case.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sexp/case.rs b/src/sexp/case.rs index d78f7ad..eb98446 100644 --- a/src/sexp/case.rs +++ b/src/sexp/case.rs @@ -54,6 +54,7 @@ impl SExp { * ``` */ pub fn matches_pat(&self, pat: &SExp) -> Option<Vec<(String, SExp)>> { + println!("matchin {self} against {pat}"); match (self, pat) { (a, b) if a == b => Some(vec![]), |