[REBOL] Re: Can I define an anti function?
From: rotenca:telvia:it at: 24-Feb-2004 16:00
Hi Anton,
That is the serialization of a native function referenced directly. In this
case happens to be the 'not function.
As you can understand, native functions cannot be serialized, and mold put a
'native word for every native it should serialize.
It also outputs 'op for every op! and 'action fore every action!:
>> mold reduce [:do :set]
== "[native native]"
>> mold reduce [:equal? :find :add]
== "[action action action]"
>> mold reduce [:+ :-]
== "[op op]"
---
Ciao
Romano