6 lines
88 B
Kotlin
6 lines
88 B
Kotlin
class Test {
|
|
fun getInt(): Int {
|
|
val b = 10
|
|
return b.toInt()
|
|
}
|
|
} |