What Is syntax for Kotlin?

This function is used to execute code. Any code inside the main() function’s curly brackets {} will be executed . For example, the println() function is inside the main() function, meaning that this will be executed. The println() function is used to output/print text, and in our example it will output “Hello World”.

Read more