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

[REBOL] Re: Mezzanine / Native?

From: carl:cybercraft at: 13-Feb-2003 12:43

On 13-Feb-03, Tim Johnson wrote:
> Two related Issues: > 1)Anyone have a suggestion as to how to get a list > of rebol words that are mezzanine functions? > 2)And the following console session has got me bewildered: >>> help print > USAGE: > PRINT value > DESCRIPTION: > Outputs a value followed by a line break. > PRINT is a native value. > ARGUMENTS: > value -- The value to print (Type: any) >>> native? 'print > == false > ; say WHAT? What's up with that? rebol just told > ; me that 'print is native. <!-- DUH --> > any ideas on that one?
Try this, Tim...
>> native? :to-integer
== false
>> native? :print
== true
>> native? :no-word
** Script Error: no-word has no value ** Near: native? :no-word
>> native? 'no-word
== false -- Carl Read