In windows command prompt you have echo off which is what Espruino does with echo(0). The issue is that just writing echo off echoes characters, so in Windows you prefix a line with @ if you don't want it to echo anything.
I'm after something like that for the Espruino command prompt - so piping stuff to /dev/null doesn't really help ;)
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
In windows command prompt you have
echo off
which is what Espruino does withecho(0)
. The issue is that just writingecho off
echoes characters, so in Windows you prefix a line with@
if you don't want it to echo anything.I'm after something like that for the Espruino command prompt - so piping stuff to /dev/null doesn't really help ;)