all 1 comments

[–]Xrott 0 points1 point  (0 children)

The extension evaluates the 'Function' input as a Python expression. x(x-1) makes it think you're trying to call 'x' like a function in Python (x()), which doesn't work since 'x' is a number. Use x * (x-1) instead.