/* http://stylus-lang.com/docs/comments.html */

// Single-line comments look like JavaScript comments, and do not output in the resulting CSS:

// Same goes for multiple single-line comments
// adjacent to each other
// on separate lines
// http://stylus-lang.com/docs/comments.html

/*
 * Multi-line comments look identical to regular CSS comments.
 * However, they only output when the compress option is not enabled.
 */
body {
  padding: 5px;
}

/*!
 * Multi-line comments which are not suppressed start with /*!.
 * This tells Stylus to output the comment regardless of compression.
 */
@function add($a, $b) {
  @return $a + $b
}

// sign comment

div {
  color: red; // inline comment
  font-size: 16px; /* inline comment */
}

$font-size: 16px; // variable inline comment
