comments


Node.js

  1. // this is a line comment
  2. /*
  3. this is a block comment
  4. */

Go

  1. package main
  2. func main() {
  3. // this is a line comment
  4. /*
  5. this is a block comment
  6. */
  7. }