let x = 4 let y = 9 let z = 10 # order of operations test assert_eq(x + y * z, 94) assert_eq(x + y * z + 1 * 5, 99)