Skip to content

Commit

Permalink
rm debug stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
nulluser committed Jun 2, 2024
1 parent f3ecf04 commit 73df178
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/backend/eval/expressions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ pub fn evaluate_call_expr(args: Vec<Expr>, caller: Expr, env: &mut Environment)
Val::NativeFunction(callable) => return (callable.call)(evaluated_args, env),
Val::Function(fn_value) => {
let mut scope = Environment::new_with_parent(fn_value.declaration_env.to_owned());
println!("{:#?}", scope);
for (i, _) in evaluated_args
.iter()
.enumerate()
Expand Down

0 comments on commit 73df178

Please sign in to comment.