Variables · 16 of 42 ✓
It is possible to declare and assign multiple variables to the same value.
The types of the variables in this example are inferred.
var x, y, z = 0 var c, python, java = false println((x, y, z, c, python, java))