I'm trying to understand parse from the ground up so don't tell me to use split in this case.
sentence: "This is a sentence"
parse sentence [
any [
[any space] copy text [to space | to end] skip
(print text)
]
]
Why do I not get the last word in the sentence, and only:
This
is
a
Did the [to end]
not work?