diff --git a/src/io.js b/src/io.js index ff1fc3c..6c0b163 100644 --- a/src/io.js +++ b/src/io.js @@ -24,7 +24,7 @@ class Juicescript_io { // PRETTY PRINT INCOMMING DATA? // // object if(typeof text === "object"){ - text = "Object" + "\n" + JSON.stringify(text, null, 4); + text = "Object" + "\n" + JSON.stringify(text, null, 4) + "\n"; } diff --git a/src/main.js b/src/main.js index 062ee6f..3cf26e9 100644 --- a/src/main.js +++ b/src/main.js @@ -111,6 +111,5 @@ class Juicescript { */ run(){ /**/this.io.stderr.debug(this.program_tree); - /**/console.log(this.program_tree); } }