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

[REBOL] Re: What does it mean/

From: tim:johnsons-web at: 13-Sep-2001 15:28

Ammon:
> This specifies a literal word. Read up in the core pdf under expressions/words/literal_words. > > --Ryan
While you are there Ammon, look at the the following code which is in the section that Ryan points to above: video: [ title "Independence Day" length 2:25:24 date 4/july/1996 ] print select video 'title ; Now if you have entered the code above into the rebol command ; line, code the following
>>video/title
== "Independence Day"
>> video/date
== 4-Jul-1996 ; you may find that enlightening. ; also, "Rebol the Official Guide" goes into literal words in ; great depth, and I note that Amazon is offering new copies ; at 50% and used copies for just $11.50. ; I also recommend "Rebol for Dummies" - it's just that ; that's a really significant discount for such a resource. tim