comment in Kotlin

In Kotlin, comments are portion of the program intended for programmers to understand the code. They are completely ignored by the Kotlin compiler.
There are two types of comments in Kotlin,
*   /\* ... \*/. This is a multiline comment that can span over multiple lines.
*   // ..... The compiler ignores everything from // to the end of the line.