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

[REBOL] Re: A few questions about words

From: rebol:svendx:dk at: 19-Oct-2000 20:30

Hello [eric--mccinc--com], You can use get and set: ## word1: "This is a word" == "This is a word" ## word2: 'word1 == word1 ## word2 == word1 ## get word2 == "This is a word" ## set word2 "It still is" == "It still is" ## word1 == "It still is" (## is my rebol prompt...) /Thomas On 19-Oct-00, [eric--mccinc--com] wrote: