mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
17 lines
348 B
Plaintext
Vendored
17 lines
348 B
Plaintext
Vendored
package_local class _Dummy_ {
|
|
package_local class Simple {
|
|
private var name: String
|
|
|
|
public fun <init>(name: String) {
|
|
this.name = name
|
|
}
|
|
|
|
public fun getName(): String {
|
|
return name
|
|
}
|
|
|
|
public fun setName(name: String): void {
|
|
this.name = name
|
|
}
|
|
}
|
|
} |