You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creating a binary expression such as with +, *, or ^ as an argument passed into a function results in a recursive lookup, creating a chain of expressions in the output. Example
%funcb(a)
funca(a + Up)
%funca(a)
Msg(Everyone, a)
//funcb(<1,2,3>)
The value of a is evaluated to a + Up in funca rather than <1, 2, 3> + Up. This results in a chain of Add(..., 1) expressions.