diff options
author | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-08-12 20:15:30 +0300 |
---|---|---|
committer | Joel Kronqvist <joel.kronqvist@iki.fi> | 2025-08-12 20:15:30 +0300 |
commit | ec13c45c8ae0f63fa715178308547cfadd8f8c39 (patch) | |
tree | 94b69a54861437b525e3fc2832118413b94baed2 /src/sexp/case.rs | |
parent | a8a4c5b567ea6a58809dc8232ea5f1d3c93879b9 (diff) | |
download | myslip-ec13c45c8ae0f63fa715178308547cfadd8f8c39.tar.gz myslip-ec13c45c8ae0f63fa715178308547cfadd8f8c39.zip |
feat: pattern matching evaluation in step.rs
Diffstat (limited to 'src/sexp/case.rs')
-rw-r--r-- | src/sexp/case.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sexp/case.rs b/src/sexp/case.rs index 71f5007..d78f7ad 100644 --- a/src/sexp/case.rs +++ b/src/sexp/case.rs @@ -71,7 +71,7 @@ impl SExp { .map(|vs| vs.0.into_iter().chain(vs.1).collect()) }, - _ => todo!(), + _ => None, } } |