RemoteDebug
RemoteDebug copied to clipboard
if/else doesn't work (macro problem?)
Describe the bug
this code can never output "x=0"
if (x == 1) debugD("x=1");
else debugD("x=0");
but this code works
if (x == 1) {debugD("x=1");}
else {debugD("x=0");}
To Reproduce Run code snippets above.