Sorry for this question but i don’t find anything on google,
the comments on klipper start # and ;? no differences?
Why are a start end comments like C:
/*hhhh
hhhh
hhhh
*/
Thank you and sorry.
Sorry for this question but i don’t find anything on google,
the comments on klipper start # and ;? no differences?
Why are a start end comments like C:
/*hhhh
hhhh
hhhh
*/
Thank you and sorry.
Klipper knows two “end of line” comments:
#
- the hash as commonly used in Python;
- the semicolon as commonly used in gcodeIn addition:
Thank you very much.