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

[REBOL] Re: reduce [unset!] compose [(unset!)]

From: lmecir:mbox:vol:cz at: 23-May-2004 19:31

Anton Rolls napsal(a):
>...snip... but >why doesn't the following unset value also disappear? > > >> compose [(unset!)] > == [unset!] >
because UNSET! is a datatype, if you want to get a value of this datatype, you can e.g.: type? () ; == unset!, which yields what you expect, but not what I expect