[REBOL] Re: [TYPE] weird return value
From: hallvard:ystad:oops-as:no at: 21-Apr-2004 21:46
Dixit Maxim Olivier-Adlhoch (21.19 21.04.2004):
>But it should return invalid data or refinement!
Should it?
>> a:/ ; url!
== a:/
>> # ; issue!
== #
>> <A<> ; tag!
== <A<>
>> [e--e] ; email!
== [e--e]
Rebol doesn't always check your input for validity. When you pass something to the rebol
console, it is evaluated. Always. /Birds is evaluated and found to be a refinement. So
rebol returns the refinement /birds.
HY