Adam current directory in Julia

Julia from the terminal assumes your current directory is the one you’re in. But within Atom it assumes your home directory is the current directory. So things that run fine in the terminal don’t run the same if you don’t specify a path. So I found I can specify the current working directory like so…

cwd=(@__DIR__)*"/"

Then preface the filename with cwd. Then it works the same in Atom or a terminal.