Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Re(2): 'parse-url - where defined?

From: rebol:techscribe at: 30-Jan-2001 21:21

Hi Anton, it's really worth your while to explore the system. Just start at the top-level system object:
>> print mold next first system
look through the list it generates, check the types of the different words contained in the block
>> foreach word next first system [
print [word "has type" type? in system word] ] and then look at what the words that are objects contain. Or, if you're too lazy to do that manually ;-), you can use Bo's system object inspector, which should in rebol.com's archive. It's an interactive tool that lets you explore the system object to a degree. Hope this helps, Elan Anton wrote: