Klipper cfg comments

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 gcode

In addition:

  • A blank / space as separator between the statement and the comment symbol is mandatory
  • Block / Multi-line comments are not supported (AFAIK)
2 Likes

Thank you very much.