Kotlin - Introduction Comments

Introduction

Comments in Kotlin will come as no surprise to most programmers as they are the same as Java, Javascript, and C, among other languages.

Block comments and line comments are supported:


// line comment 

/* 
         A block comment 
         can span many 
         lines 
*/