8000 GitHub - atgreen/Khazern: A portable and extensible Common Lisp LOOP implementation
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

atgreen/Khazern

 
 

Repository files navigation

Khazern

Khazern is a portable and extensible Common Lisp LOOP implementation. It was originally written by Robert Strandh as part of SICL. It can be loaded intrinsically in order to replace LOOP in an existing Lisp implementation or extrinsically to coexist with the implementation's own LOOP.

To load Khazern intrinsically with Quicklisp do the following:

* (ql:quickload :khazern-intrinsic)
* (loop for i in '(1 2 3 4) when (oddp i) collect i)    
(1 3)

To load Khazern extrinsically do the following

* (ql:quickload :khazern-extrinsic)
* (khazern-extrinsic:loop for i in '(1 2 3 4) when (oddp i) collect i)    
(1 3)

About

A portable and extensible Common Lisp LOOP implementation

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Common Lisp 100.0%
0