16.14    Comments

Finally, I want to share a few words about comments in Sass. Especially if the code becomes more extensive, you’ll probably want to use comments. Here you can proceed like you would in CSS and add a comment like the following in the SCSS file:

/* I am a comment */ 

The CSS preprocessor will also include this comment in the CSS file. In addition, Sass still provides the option to write a comment as follows:

// I am a comment 

However, this comment can only span one line. Furthermore, this comment won’t be added to the CSS file by the CSS preprocessor. I find this useful as a method to separate comments that are significant for Sass from general comments for CSS.