Search code examples
smalltalksqueak

new line in squeak


i want to do something like this: Transcript show: '\n'. how?


Solution

  • Use the following:

    Transcript cr
    

    You can use it after a value via a cascade:

    Transcript show: 123; cr