-- Three simple assignments, and evaluation of the assigned variables. var x,y,z:integer; > let x = 10; > let y = 20; > let z = 30; > x; > y; > z; > x+y+z;