7 lines
68 B
Plaintext
Vendored
7 lines
68 B
Plaintext
Vendored
val foo: (Long) -> String = {
|
|
it: Long ->
|
|
|
|
|
|
it.toString()
|
|
}
|