• What does the pipe or vertical bar | do in UCBlogo

    From LogoLearner@21:1/5 to All on Sat Jan 23 08:42:28 2021
    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 [|*****| |* *| |* *| |**** | |* *| |* *| |*****|]

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Michael Daumling@21:1/5 to All on Wed Feb 3 09:17:48 2021
    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]

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)