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
Supplying ARRAY/INITIAL in Rebol with a function value initiates each element of the array with the product of a fresh invocation of the function. This doesn't happen in Rebmu. Rebol 3:
...however, it wasn't working even when passing in the result of the function generator. (which was presumably what you tried first). So yep, there was a bug.
Fixed with the assistance of a helpful person on StackOverflow :-)
Ah, while it did fix the specific case of function values it changes the evaluation rules...so now you can't pass ordinary variables or expressions because of the quoting. It effectively makes AI~ have a different prototype which isn't what's needed... see comment on SO.
Supplying ARRAY/INITIAL in Rebol with a function value initiates each element of the array with the product of a fresh invocation of the function. This doesn't happen in Rebmu. Rebol 3:
And in Rebmu:
The text was updated successfully, but these errors were encountered: