Skip to content

Instantly share code, notes, and snippets.

@labohkip81
Created August 12, 2018 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save labohkip81/f39f505523cdbdde2229a67e558b1729 to your computer and use it in GitHub Desktop.
Save labohkip81/f39f505523cdbdde2229a67e558b1729 to your computer and use it in GitHub Desktop.
AdvancedThreadbareDemo created by Labohkip81 - https://repl.it/@Labohkip81/AdvancedThreadbareDemo
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