Code: Select all
EnableGraphicalConsole(1)
PrintN("hello" + #CRLF$ + "world")
Code: Select all
hello☐☐world
I tried each combination of CR, LF, CRLF.
Note that below code also works as expected, so I don't know what PrintN does different:
Code: Select all
PrintN("hello")
PrintN("world")