我正在构建模型以在Rebol3上使用SDL2显示UI。
到目前为止,我还想做这样的事情:
gui: copy []
append gui context [style: 'h1 at: 10x30 text: "Hello World!" font: arial]
但是我应该使用Object!当我只需要一个座位!像这样:
gui: copy []
append/only gui reduce/no-set [style: 'h1 at: 10x30 text: "Hello World!" font: arial]
您对此有何看法?什么是最好用的?还有其他建议吗?
答案 0 :(得分:3)
为什么不用方言?
[h1 10x30 "Hello World!" font arial]
在内部我会将其存储为对象!,因为它为您提供了更轻松的操作。