i want to do something like this: Transcript show: '\n'. how?
+3
A:
Use the following:
Transcript cr
You can use it after a value via a cascade:
Transcript show: 123; cr
anon
2009-05-19 09:05:49
+1
A:
The character itself can be reached as "Character cr". So, you could also do this:
Transcript show: 'Bla! , Character cr asString.
But of course,
Transcript show: 'Bla!' ; cr.
is way more elegant.
nes1983
2009-05-21 12:03:48