Can I use 'continue' in a ternary construct?
-
Is the following valid?
{exists(global.debug) && global.debug} ? echo 'foo' : continue
If no, what would I use instead of
continue
? -
@oliof no, because continue is a command, not an expression. Use an if-statement instead.
-
-
@moth4017 try the echo keyword in comditional gcode. Failing that M117 display message.