mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
17 lines
321 B
Kotlin
Vendored
17 lines
321 B
Kotlin
Vendored
package h
|
|
|
|
class Square() {
|
|
var size : Double =
|
|
<!UNRESOLVED_REFERENCE!>set<!>(<!UNRESOLVED_REFERENCE!>value<!>) {
|
|
<!SYNTAX!>$area<!> <!SYNTAX!>= size * size<!>
|
|
}
|
|
|
|
<!MUST_BE_INITIALIZED_OR_BE_ABSTRACT!>var area : Double<!>
|
|
private set
|
|
}
|
|
|
|
fun main(args : Array<String>) {
|
|
val s = Square()
|
|
|
|
s.size = 2.0
|
|
} |