假设我定义了几个词:
Word1: 5
Word2: "blahdiddyblah"
系统的某些部分或块是否存储正在使用的单词?
尝试过这样的事情,但失败了:
S1: to-block copy system/contexts/user
D: 3
S2: to-block copy system/contexts/user
Difference s1 s2
根据@johnk 的建议,我尝试了:
>> snapshot-of-words: words-of system/contexts/user
== [system snapshot-of-words words-of contexts user]
>> x: 1
== 1
>> difference snapshot-of-words words-of system/contexts/user
== [x difference]
>> difference snapshot-of-words words-of system/contexts/user
== [x difference]
>> 5 + 9
== 14
>> form ["hellow" "there" ]
== "hellow there"
>> difference snapshot-of-words words-of system/contexts/user
== [x difference + form]
这是什么意思?本机函数在使用后绑定到用户上下文中?有没有办法将这些与用户可能绑定的内容隔离开来?