Guest User

Untitled

a guest
Jun 25th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. fun main(args: Array<String>) {
  2. val hello = "hello"
  3. //value can not be reinitialized because it is like final variable in java
  4. hello = "dlkjf" // it will produce an compile time error
  5. println("$hello")
  6. }
  7. ###output###
  8. hello
Add Comment
Please, Sign In to add comment