Created
August 12, 2018 11:22
-
-
Save labohkip81/f39f505523cdbdde2229a67e558b1729 to your computer and use it in GitHub Desktop.
AdvancedThreadbareDemo created by Labohkip81 - https://repl.it/@Labohkip81/AdvancedThreadbareDemo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Shape { | |
var numberOfSides = 0 | |
fun simpleDescription() = | |
"A shape with $numberOfSides sides." | |
} | |
var shape = Shape() | |
shape.numberOfSides = 7 | |
println(shape.simpleDescription()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment