Guest User

Untitled

a guest
Jan 22nd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. println("${if (PUBLIC_CONSTANT > INTERNAL_CONSTANT) "PUBLIC_CONSTANT (val $PUBLIC_CONSTANT)"
  2. else "INTERNAL_CONSTANT, val $INTERNAL_CONSTANT"
  3. } is greater than ${
  4. if (INTERNAL_CONSTANT > PUBLIC_CONSTANT) "PUBLIC_CONSTANT, val $INTERNAL_CONSTANT"
  5. else "INTERNAL_CONSTANT (val $INTERNAL_CONSTANT)"}")
  6.  
  7. //PUBLIC_CONSTANT (val 12) is greater than INTERNAL_CONSTANT (val 4)
Add Comment
Please, Sign In to add comment