mparlak / Flee

Fast Lightweight Expression Evaluator
607 stars 119 forks source link

Assigning a value to a variable in an expression #109

Open btyilmaz opened 5 months ago

btyilmaz commented 5 months ago

Hi,

Is there a way of assigning a value to a variable in an expression such as

variable1 = variable2*15

I know this expression compares two sides of the '=' operator. What I need is that after evaluating this expression, variable1's value must be changed.

Thanks