How to synchronize output in Julia's language?

I am trying to loop through a loop, print each value and then print the result of some other function.

But the output looks strange, the loop output is mixed with the output of another function.

Is there any way to sync it? I use Jupyter, not Julia's console.

enter image description here

+4
source share
1 answer

As Gnimuk K. noted in the comments:

it has already been fixed here but not yet released. you must work on the host through Pkg.checkout ("IJulia")

+1
source

All Articles