1
1
Fork 0
AtomicKotlinCourse/Programming Basics/Summary 1/Exercise 1/task.md

6 lines
200 B
Markdown
Raw Permalink Normal View History

2019-10-10 18:58:14 +03:00
## Summary 1 (#1)
Define `var x = 1`. Now define `val y = x` and `val z = y`. Next, assign
2019-11-07 16:01:16 +03:00
2 to `x` and display the values of all three identifiers on different lines:
first `x`, then `y`, then `z`.