Declaring Functions in Kotlin With fun Declaring functions in Kotlin is simple. We have a few different ways to do it. For example we can skip defining the return type if the function returns an expression and does not have a function body. Or, we can set function parameters to have […]