Created
August 4, 2018 18:28
-
-
Save x8x/e0af4637838f020e0673f854a9f6e261 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@x8x I can't answer all the questions, as I don't know the implementation internals of Red, but I think you are correct on first point.
About the third point, I think it is because the
a
resulting from loading the string is bound to default global context. I may hypothesize thata
-s in function's body are bound to local context at definition time, but loading happens in runtime, anda
resulting from loading in runtime is not bound to functions context.BTW, in my first snippet
bind
isn't needed actually, becausea
is bound in this case: