I have this code:
And I’m trying to import it to Pluto.jl like this:
But it does not work! Could someone help me, please?
I have this code:
And I’m trying to import it to Pluto.jl like this:
But it does not work! Could someone help me, please?
the way Pluto implemented causes:

so one clean answer is don’t do this, make it a package and ]dev <local path> so you can simply using Cow from anywhere
https://github.com/JuliaPluto/PlutoLinks.jl
You cold try this.
I usually do something like this
begin
 import Pkg
 Pkg.activate(temp=true)
 Pkg.dev("path to your pkg")
 using your_pkg
end