how to define kotlin function code example
Example 1: make function kotlin
fun main() {
println("This is a function")
}
Example 2: how to write a function in kotlin
// Use 'fun' keyword to declare function
// 'num' is the parameter and is of type Int
// The ':Int' indicates the return type
fun square(num: Int):Int {
return num * num
}