Probelm with Print or Println in Pluto

I am new to Julia, so maybe doing it in the wrong way. I have installed Julia 1.6.3 on my windows machine and all packages are updated. If I start pluto and run the following commands in separate cells, the print or println doesn’t print anything there, it prints in the REPL where I started pluto. How can I solve this?

using PlutoUI
print("Hello")
println("Hello")

https://stackoverflow.com/questions/66014330/print-statement-in-pluto-jl

1 Like

with_terminal() seems to have gone missing from the PlutoUI docs (alongside several other exported elements). Until that’s fixed, you can reference an older version of the docs: Docstrings · PlutoUI.jl

2 Likes