Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss
Groups keyboard shortcuts have been updated
Dismiss
See shortcuts

What does the pipe or vertical bar | do in UCBlogo

16 views
Skip to first unread message

LogoLearner

unread,
Jan 23, 2021, 11:42:28 AM1/23/21
to
I'm back to CSLS after a long break. Does anyone know the purpose of the pipe/vertical bar | character? Is this unique to UCBlogo? I've played around with it but I can't find a description anywhere.

EXAMPLE:
to sayrow :row :letter
type item :row thing :letter
type "| |
end

make "b [|*****| |* *| |* *| |**** | |* *| |* *| |*****|]

Michael Daumling

unread,
Feb 3, 2021, 12:17:49 PM2/3/21
to
With vertical bars, you can use characters in a string that would be considered special characters otherwise

PR "HELLO WORLD
HELLO
I don't know how to WORLD
PR "|HELLO WORLD| => HELLO WORLD

Some Logos, like Terrapin Logo, also use vertical bars to preserve case.

PR "Hello => HELLO
PR "|Hello| => Hello
MAKE "A [a |b| c]
PR :A
[A b C]
0 new messages