mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 21:11:28 +07:00
6 lines
164 B
Kotlin
6 lines
164 B
Kotlin
val gF1: (Int, Int) -> String = { a, b -> "Both ${a + b}" } /// F, λ
|
|
|
|
class A1 { /// M
|
|
val mF1: (Int, Int) -> String = { a, b -> "Both ${a + b}" } /// F, λ
|
|
}
|