Advertisement
Guest User

Как?

a guest
Aug 17th, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.17 KB | None | 0 0
  1. var someProp: VarType?
  2.  
  3. // result should be VarType not VarType?
  4. if (someProp != null) {
  5.   return someProp
  6. }
  7. else {
  8.   someProp = computeVariable()
  9.   return someProp
  10. }
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement