mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
18 lines
329 B
Plaintext
Vendored
18 lines
329 B
Plaintext
Vendored
default class _Dummy_ {
|
|
default class Simple {
|
|
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
|
|
}
|
|
|
|
}
|
|
} |