Kotlin -Kommentar -Tutorial
//this is a comment
/*this is a comment*/
/*
this is a comment
*/
Tame Tortoise
//this is a comment
/*this is a comment*/
/*
this is a comment
*/
/* This is a multi-line comment.
* The problem prints "Hello, World!" to the standard output.
*/
fun main(args: Array<String>) {
println("Hello, World!")
}