Christopher Ross-Gill
Christopher Ross-Gill
I have Red installed on OS X via Homebrew (red-latest, recently reinstalled). I hit this while trying to call Red from Rebol 2: ``` probe call/wait/input "red" {Red []^/print "I...
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...
Would expect to insert new values at the index of the given block: ``` >> also target: [] repeat x 3 [collect/into [keep x] target] == [1 2 3] ```...
When importing a module using a file argument (or a block of files), IMPORT/LOAD-MODULE does not resolve modules relative to the modules folder. ``` >> import %test-mod.reb ** access error:...
(Related to #105) Outside of using the interpreter in a REPL/Terminal environment (e.g. when using the interpreter for [shell scripting](https://www.cs.unm.edu/~whip/rebol-unix-shell.html)), ANSI escape sequences obscures some system output. NO_COLOR support offers...