How to define functions in kotlin?
Kotlin provides a concise way to define functions, enhancing readability and reducing boilerplate code. Here's how you can define and use functions in Kotlin:
fun greet(name: String): String {
return "Hello, $name"
}
println(greet("Alice"))