Skip to content

Commit

Permalink
chore: remove dbg message
Browse files Browse the repository at this point in the history
  • Loading branch information
caelansar committed Aug 10, 2023
1 parent 8e618ec commit e410347
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions src/eval/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,14 +206,11 @@ impl Evaluator {
name: _,
params,
body,
} => {
dbg!("create func");
Some(Object::Function(
params.clone(),
body.clone(),
self.env.clone(),
))
}
} => Some(Object::Function(
params.clone(),
body.clone(),
self.env.clone(),
)),
ast::Expression::Call { func, args } => {
if let Some(obj) = self.eval_expression(func) {
self.eval_function_call(obj, args)
Expand Down

0 comments on commit e410347

Please sign in to comment.