Comments

    Go

    1. package main
    2.  
    3. // This is a general comment
    4. /* This is also a comment
    5. but on multiple lines.
    6. */
    7.  
    8. /* This is the multi-line comment for the function main().
    9.  
    10. godoc comments.go
    11.  
    12. */
    13.  
    14. }