fix: remove dbg statement...

This commit is contained in:
Roman Godmaire 2024-05-04 18:49:40 -04:00
parent 93d53bd2a1
commit 18ea5f34e6

1
src/env/core.rs vendored
View file

@ -324,7 +324,6 @@ pub(super) fn core() -> HashMap<String, Node> {
"let*",
Node::Special(|env, args| {
arg_count!(2, args.len());
dbg!("Hi mom");
let mut args = args.into_iter();
let new_env = match args.next().unwrap() {