Guest User

Untitled

a guest
Jun 25th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. fun main(args: Array<String>) {
  2. //var variable is decleared
  3. var name = "name Check"
  4. println(name)
  5. //changed the value of the variable
  6. name="hell"
  7. println("name is $name" + " check ")
  8. }
  9. ###output###
  10. name Check
  11. name is hell check
Add Comment
Please, Sign In to add comment