mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
11 lines
184 B
Kotlin
Vendored
11 lines
184 B
Kotlin
Vendored
package com.myapp
|
|
|
|
import android.app.Activity
|
|
|
|
class MyActivity: Activity() {
|
|
fun foo() {
|
|
object {
|
|
val text = getString(R.string.resource_id)
|
|
}
|
|
}
|
|
} |