Variables · 17 of 42 ✓
Using Tuples, it is possible to assign multiple values to multiple variables (either var or val).
var
val
var (x, y, z, c, python, java) = (1, 2, 3, true, false, "no!") println((x, y, z, c, python, java))