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

[REBOL] Re: Explain please

From: gscottjones:mchsi at: 17-Aug-2002 14:06

From: Dick
> >> .a:10 > == .a:10 > >> .a > ** Script Error: .a has no value > ** Where: halt-view > ** Near: .a > > no error occurred on the "assignment" > yet there is no value for .a
Hi, Dick, Missing a space between the ':' and the integer.
>> .a: 10
== 10
>> .a
== 10 As far as why there was no error, near as I can figure, the interpreter parser thought it looked close enough to a url:
>> type? .a:10
== url! --Scott Jones