void main(){ var x = 20; var y = 35; var z = x + y; print("x + y = $z"); }
Output Results
x + y = 55