Comment on Show HN: a compiler from Python syntax to JavaScript syntax (like CoffeeScript)parentComments−endianOP15yThanks. I'll change pj.transformations.special.Call_print to have the emitted code check if you've defined a print function, using console.log only if you haven't. ((typeof print !== "undefined" && print !== null) || console.log)(...)
Comments
Thanks. I'll change
to have the emitted code check if you've defined a print function, using console.log only if you haven't.