diff options
Diffstat (limited to 'src/compiler.js')
-rw-r--r-- | src/compiler.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/compiler.js b/src/compiler.js index e87ff760..e4bd8964 100644 --- a/src/compiler.js +++ b/src/compiler.js @@ -76,10 +76,12 @@ if (ENVIRONMENT_IS_NODE) { } } else if (ENVIRONMENT_IS_WEB) { - this['print'] = printErr = function(x) { + printErr = function(x) { console.log(x); }; + if (!this['print']) this['print'] = printErr; + this['read'] = function(url) { var xhr = new XMLHttpRequest(); xhr.open('GET', url, false); |