I know, I know. "What new-line state?", you ask. Well, let me show you:
append [] w: first new-line [hello] on
== [
hello
]
W is a now a word that creates a new-line when appended to a block.
You can turn it off, for example this way in Rebol 3:
append [] to word! w
== [hello]
But I have not found a good way to turn it on. Can you, Rebol guru?
Clarification: I am looking for some 'f such that:
append [] f to word! "hello"
has a new-line in it.