Hi Francoise,
you wrote:
>Can I append text to a block?
If you want append, use 'append. since you are using a refinemnt, I am
assuming you are working with objects or blocks:
Objects:
>> details: make object! [description: []]
>> append details/description "some descriptive string."
== ["some descriptive string."]
>> print details/description
some descriptive string.
Blocks:
>> details: make block! [description []]
== [description []]
>> append details/description "some descriptive string."
== ["some descriptive string."]
>> print details/description
some descriptive string.
Of course, the block you are appending to must already exist ...
Elan