In a Jupyter cell, I'd like to call a function that has some println, @show, etc in it, but I don't want to see those outputs. Is there a way to call a function while suppressing outputs? I'm aware of ;, but my understanding is that ; only affects the return value.
For example, let's say you have a function
function testOutputs()
@show("Show macro still showing")
println("Println still showing")
a = 1 + 2
end
Calling testOutputs(); in a cell results in:
"Show macro still showing" = "Show macro still showing"
Println still showing
I would like it to print nothing.