Print command with wordwrap/Linefeed included

Hi David,
is there a way to include word-wrap in one Print command?
e.g. Print(" first Line in logger window\n" + “second Line…”)
\n does not work.
Peter

Not at this time — the Print statement was intended for very simple debugging purposes. I suppose using docstring notation would probably work though. E.g.

initialization

Print(“this is a line” + <<<

  • “a second line”)

end

:), not important, i will just use two Print commands,
that does work.
Thanks,
Peter