There is a way to list the words in the current Red console

Is there an object like rebol / words available in the REPL assembly using console.red?

I am using red-master currently on github (it only talks about alpha and Latin-1, but does not have a different version id, and I did not see anything at the top of console.red)

I tried to perform some functions, but I did not have a list of available ones (it could be right under my nose ...)

thanks

+4
source share
1 answer

Use words - systems / words to get a list of all words defined in a global context.

Use the system / version to get the version and system / build / date for the build date.

+4
source

Source: https://habr.com/ru/post/1495627/


All Articles