; Evaluate p(x) = 2x^3 - 3x^2 + 5x - 7 at x = 2.5 by Horner's method ; via a let-threaded Float accumulator. Expected stdout: 18 (module mut-local_3_horner (fn main (type (fn-type (params) (ret (con Unit)) (effects IO))) (params) (body (app print (let acc 2.0 (let acc (app - (app * acc 2.5) 3.0) (let acc (app + (app * acc 2.5) 5.0) (let acc (app - (app * acc 2.5) 7.0) acc))))))))