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

[REBOL] Re: Mezzanine / Native?

From: greggirwin:mindspring at: 12-Feb-2003 17:23

Hi Tim, TJ> 1)Anyone have a suggestion as to how to get a list TJ> of rebol words that are mezzanine functions? I thought I had one somewhere, but couldn't find it. I'm sure somebody will post something better, but this might get you started. i: 0 foreach word first system/words [ if all [value? w: to word! :word function? get w] [ i: i + 1 print [i word] ] ] TJ> 2)And the following console session has got me bewildered:
>> native? :print
== true -- Gregg