I’m trying to print a multiline figure in Pluto. println only goes to the REPL, and although Print from PlutoUI prints in the notebook, it only prints the last item. That is, if I do
begin
Print("GOK")
Print("\n")
Print("Souffle")
Print("\n")
Print("GARK")
end
The result is GAR, with Souffle and GOK being lost. Even printing \n doesn’t help, which is odd.
How can I make Print behave as one would expect, if possible?