サンプル コードは REBOL 2 であるため、GET を使用して単語の値を取得できます。
>> get to-word (rejoin [foo "_result_data"])
== [none none none none none]
REBOL 3 は、REBOL 2 とは異なる方法でコンテキストを処理します。したがって、新しい単語を作成するときは、そのコンテキストを明示的に処理する必要があります。そうしないと、コンテキストがなく、設定しようとするとエラーが発生します。これは、単語のコンテキストをデフォルトで設定する REBOL 2 とは対照的です。
したがって、次のような REBOL 3 コードを使用して、動的変数を SET/GET することを検討できます。
; An object, providing the context for the new variables.
obj: object []
; Name the new variable.
foo: "test1"
var: to-word (rejoin [foo "_result_data"])
; Add a new word to the object, with the same name as the variable.
append obj :var
; Get the word from the object (it is bound to it's context)
bound-var: in obj :var
; You can now set it
set :bound-var now
; And get it.
print ["Value of " :var " is " mold get :bound-var]
; And get a list of your dynamic variables.
print ["My variables:" mold words-of obj]
; Show the object.
?? obj
これをスクリプトとして実行すると、次のようになります。
Value of test1_result_data is 23-Aug-2013/16:34:43+10:00
My variables: [test1_result_data]
obj: make object! [
test1_result_data: 23-Aug-2013/16:34:43+10:00
]
上記の IN を使用する代わりに、BIND を使用することもできます。
bound-var: bind :var obj