Native vs Mezzanine and how to get the source of a Rebol Mezzanine function
There are two types of functions in Rebol: native mezzanine A native function is a compiled function which source code is not accessible whereas a mezzanine function is written in Rebol itself. For example the Parse function is native whereas the build-markup function is mezzanine. So try this in Rebol Console: source build-markup It will ...more»