Skip to content

Commit

Permalink
Merge pull request #65 from JunNishimura/fix/unnecessary_print
Browse files Browse the repository at this point in the history
delete unnecessary printing
  • Loading branch information
JunNishimura authored Oct 16, 2024
2 parents 6128c2b + f2364eb commit a0d877a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion evaluator/evaluator.go
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,6 @@ func applyFunction(function object.Object, args object.Object) object.Object {

func unwrapReturnValue(obj object.Object) object.Object {
if returnValue, ok := obj.(*object.ReturnValue); ok {
fmt.Println("returnValue.Value", returnValue.Value)
return returnValue.Value
}

Expand Down

0 comments on commit a0d877a

Please sign in to comment.