you must write `return` in methods with block-body...
# getting-started
m
you must write
return
in methods with block-body:
fun getSomething(): Type { return something }
but not in methods with expression body:
fun getSomething(): Type = something