```python from casadi import * x = MX.sym("x") f = Function("f",[x],[x**2,x-2],["x"],["y","y"]) print(f) ```