xxxxxxxxxx
//this is a comment
/*this is a comment*/
/*
this is a comment
*/
xxxxxxxxxx
/* The code below will print the words Hello World
to the screen, and it is amazing */
// hello
println/*hello*/("Hello World") //hello
xxxxxxxxxx
/* This is a multi-line comment.
* The problem prints "Hello, World!" to the standard output.
*/
fun main(args: Array<String>) {
println("Hello, World!")
}
xxxxxxxxxx
//This is a single line comment
/* Write the text here that you want to be shown when the block is minimized
This is a
multi-line comment.
*/