[REBOL] System/? Re:
From: jeff::rebol::net at: 30-Sep-2000 6:46
> Where can I find all the refinements or path values and what is the best way
> to probe them.
>
> Paul Tretter
With the newest experimental versions of REBOL you can just
do:
PROBE SYSTEM
and a huge pile (~64k) of source code will fly by. That's
information overload, so to see what words are at each
level of the system object you can do the following:
probe first system
[self version build product components words license options
user script console ports network schemes error standard view
stats locale]
then
probe first system/ports ;-for instance
[self input output echo serial]
Bo made a script to help people navigate the system object:
http://rebol.org/script/browse-system.r
A view version would be neat.
-jeff