/* ** Example: expressions intro ** ** TODO */ a: 1; b: 2; c: 3; w: 100; x: a*w + b; y: b*w + c; z: c*w + a;