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
Accessing function arguments normally works as expected, but within a let block, it gets the previous argument instead.
Simple example: function foo(a,b,c) = let(output=b) [output,b]; echo(foo(1,2,3));
returns [1.0,2.0] instead of the expected [2.0,2.0]
The text was updated successfully, but these errors were encountered:
Accessing function arguments normally works as expected, but within a let block, it gets the previous argument instead.
Simple example:
function foo(a,b,c) = let(output=b) [output,b]; echo(foo(1,2,3));
returns
[1.0,2.0]
instead of the expected[2.0,2.0]
The text was updated successfully, but these errors were encountered: