Homepage: https://github.com/chrisbarrett/elisp-namespaces
Author: Chris Barrett
Updated:
An implementation of namespaces for Elisp, with an emphasis on immutabilty
(require 'namespaces) (namespace foo :export [hello]) (defn hello () "Hello, world!") (namespace bar) (foo/hello) ; # => "Hello, world!" See documentation at https://github.com/chrisbarrett/elisp-namespaces