1def X := 100 + 200
2
3def Y := X + 20
4
5print('X = {X}\n')
6print('Y = {Y}\n')
7
8print('Test = {:([1, 2, 3, 4])}\n')
9