Complete the code to write a single-line comment in Kotlin.
//[1] This is a commentIn Kotlin, single-line comments start with //. Anything after // on the same line is a comment.
Complete the code to write a multi-line comment in Kotlin.
/*[1]
This is a multi-line comment
*/Multi-line comments in Kotlin start with /* and end with */. Everything in between is part of the comment.
Fix the error in the Kotlin documentation comment syntax.
/**[1]
* This function adds two numbers.
*/Kotlin documentation comments start with /** and are used to describe code elements. They are different from normal comments.
Fill both blanks to create a Kotlin documentation comment for a function.
/** * [1] adds two integers. * @param [2] first number */
Documentation comments describe the function and its parameters. Use @param to explain each parameter.
Fill all three blanks to complete the Kotlin documentation comment with description, parameter, and return tag.
/** * [1] multiplies two numbers. * @param [2] first number * @return [3] the product */
Documentation comments should describe the function, its parameters, and what it returns using @param and @return tags.