
## Comments

  Stylus supports two kinds of comments, single-line, and multi-line comments, using the same syntax found in JavaScript.


    // I'm a comment!
    body
      padding 5px // some awesome padding


    /*
     * Adds the given numbers together.
     */
    
    add(a, b)
      a + b