namespaces

Homepage: https://github.com/chrisbarrett/elisp-namespaces

Author: Chris Barrett

Updated:

Summary

An implementation of namespaces for Elisp, with an emphasis on immutabilty

Commentary

(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

Dependencies