Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kisom/cl-archer
Archer is my standard library for common lisp.
https://github.com/kisom/cl-archer
Last synced: 18 days ago
JSON representation
Archer is my standard library for common lisp.
- Host: GitHub
- URL: https://github.com/kisom/cl-archer
- Owner: kisom
- Created: 2012-07-16T01:55:33.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-04-03T23:39:56.000Z (over 11 years ago)
- Last Synced: 2024-10-11T02:47:12.655Z (about 1 month ago)
- Language: Common Lisp
- Size: 102 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
ARCHER
======archer is my personal additions to the standard library. as i learn
common lisp, i imagine this will change drastically and i think it
will be interesting to see how this evolves.FAST INSTALL
============1. git clone https://github.com/kisom/cl-archer.git ~/.archer
2. add the following to your ~/.sbclrc or ~/.cmucl-init.lisp
;;; load the archer library
(let ((archer-init (merge-pathnames ".archer/init.lisp"
(user-homedir-pathname))))
(when (probe-file archer-init)
(format t "loaded archer~%")
(load archer-init)))
3. fire up sbcl or cmucl!i haven't tried this on any other implementations.