quil 2018-12-09

If I have the following project structure

/
    /project.clj
    /src/ 
           /namespace/
                                /core.clj

Where should I put an image to load with load image

I have tried in the root, next to project.clj

I have tried next to core.clj

Ah, other detail.

load-image
is failing with nullpointer

not a file not found exception

(def present-image (atom nil))

(defn set-present-image! [img-path]
  (reset! present-image (q/load-image img-path)))