fun f = x^2; fun g = derivative f in (x); fun h = f(x) - int f (0 ~ 1); for (var i = 0; i <= 1; i += 0.1) { print(g(i)); }