``` fun myFun(param: String) { ... } fun other() ...
# announcements
z
Copy code
fun myFun(param: String) { ... }

fun other() {
	val foo = someFunction()
	myFun(foo)
}