remove console.log

This commit is contained in:
Quentin Leonetti 2019-07-13 14:51:09 +02:00
parent a386b2a3cf
commit 9bf643e1a1

View File

@ -57,7 +57,6 @@ function Lisp (input, lib) {
}
const interpret = function (input, context) {
console.log(input, context)
if (context === undefined) {
return interpret(input, new Context(lib))
} else if (input instanceof Array) {