Luis Marzulli wrote:
> Could anyone help me?
> The problem:
> 
> Error
>       ** Syntax Error: Invalid tag -- <.
>       ** Where: (line 9) source <
> 
> in the following script
> 
> rebol []
> 
> source *
> source **
> source +
> source -
> source /
> source //
> source <
> source <=

It seems to work OK with me:

>> source <
<: native[
    {Returns TRUE if the first value is less than the second value.} 
    value value
]
>> source <=
<=: native[
    {Returns TRUE if the first value is less than or equal to the
second value.} 
    value value
]

Try it from your console, then try adding a blank line to the end of
your script? Your script might have a odd character at the end,
perhaps? You may have a old version of my 'Source and 'Script words.
Please find them attached, as I can't seem to get them listed at
REBOL.org.

Andrew Martin
[EMAIL PROTECTED]
http://members.xoom.com/AndrewMartin/
Online @ 33,600 Baud!
-><-

Source.r (Rebol Script File)

Script.r (Rebol Script File)

Reply via email to