Ah, ok. You can define local functions: ``` fun do...
# announcements
m
Ah, ok. You can define local functions:
Copy code
fun doSomething(s: String) {
    fun innerFunction() {
        println(s)
    }
    innerFunction()
}