i in process of trying learn little using julia translating old example code solves time dependent schrodinger equation. here have far: require("setparams.jl") require("v.jl") require("initialrim.jl") #require("expevolve.jl") function doit() nspace, r, im, x0, width, k0, xmax, xmin, v0, a, dx, dx2, n, dt = setparams() r, im = initialrim(width,n,k0,dt,xmin) probden = zeros(nspace) probden = r.*r + im.*im plot(probden) #imold = im; t=0.0 #t, r =evolve!(r,im,t,v0,width,a,dx,dx2,dt,xmin,n) println("done") end after requiring above code, using winston. attempt run code typing doit(). nothing appears. can please let me know doing wrong? can provide innards of setuparame() if needed, initialrim() thought @ first i'd ask whether expectations should happen in fault. note if run setuparams() , initialrim() in terminal session, plot(probden), correct graph appears. thanks help. update: i have restarted julia, h...