I'm encountering the following error when trying to evaluate 1 > "4" using Flee:
CompareElement: Operation 'GreaterThan' is not defined for types 'Int32' and 'String'.
I don't want to modify the expression itself or wrap values with custom functions. Is there a way to override or control the primitive type conversion mechanism (e.g., int and string) in Flee, especially for operators like GreaterThan, without altering the expression syntax?
Would appreciate any suggestions or insights.