Parallel programming loops

Okay, it still does not run in a newly started Julia, what I meant was something like the code shown below. Is this a good example of what you want to parallelize?:

using Plots, Random

x=collect(1:1000)
anim = @animate for ist=1:100
	y=rand(1000)
	scatter(x, y)
end
gif(anim,"rand.gif", fps=3)

I can’t answer this for you, but there was a post about it in 2020 Animation with threads in Plots.jl? . I would recommend that you post in “General Usage” and see if anyone there can help. Use a title like “can I parallelize animated gifs?”.