Fully loaded leiningen#
Sat Jun 29 22:04:59 2013
Topics: clojure
Taking the time to figure out how to use ones tools is more often a
good thing to do than it is a thing I actually do. In this case,
the thing I have now figured out is how to get all of a multi-file
Clojure project loaded into Clojure without visiting each file and
doing C-c C-l on it
user> (require 'winnow.core)
That's right. require on a namespace will actually load the file
that defines it - and the files defining the namespaces it depends
on. ns or in-ns just create it in an empty state.