https://kotlinlang.org logo
m

mathiasbn

07/14/2016, 7:40 AM
Given an Interface:``` interface SomeInterface { fun getString(): String }
Copy code
Can I implement that with a property somehow?
(something like this non-compiling:
class SomeClass(override val string:String) :SomeInterface ```