IS-TAIL signals the position of a STRING! type has reached the end
Categoryname
IS-TAIL value
value - name of the STRING! type value
This method has no refinements
IS-TAIL signals the position of a STRING! type has reached the end. Not to be confused with AT-TAIL. Can be used for STRING! types as well as PORT! types (such as files).
text: "Meta"
counter: 1
while not IS-TAIL text [
write/line counter
advance text
increment counter
]