Closed RichDom2185 closed 1 year ago
Link to code
When calling add(2, 3) the arguments are evaluated from right-to-left, which should not be the case. Despite this, the arguments still get assigned to the correct function parameters.
add(2, 3)
Fixed in the latest release.
Share link (if applicable)
Link to code
What is the issue?
When calling
add(2, 3)
the arguments are evaluated from right-to-left, which should not be the case. Despite this, the arguments still get assigned to the correct function parameters.