I am bit confused with space-colon-space or ` : `....
# getting-started
s
I am bit confused with space-colon-space or
:
. It can define return type as in
fun englishGreeting() : String = "Hello world"
and implement a class like
class SomeClass(var someVariable: someClass) : String
. Is that correct?
👌 1