https://github.com/s-expressionists/khazern
A portable and extensible Common Lisp LOOP implementation
https://github.com/s-expressionists/khazern
common-lisp extensible portable
Last synced: about 2 months ago
JSON representation
A portable and extensible Common Lisp LOOP implementation
- Host: GitHub
- URL: https://github.com/s-expressionists/khazern
- Owner: s-expressionists
- License: bsd-2-clause
- Created: 2020-09-23T14:29:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-04T18:31:21.000Z (12 months ago)
- Last Synced: 2025-02-10T01:38:42.434Z (4 months ago)
- Topics: common-lisp, extensible, portable
- Language: Common Lisp
- Homepage:
- Size: 723 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# 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:
```lisp
* (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
```lisp
* (ql:quickload :khazern-extrinsic)
* (khazern-extrinsic:loop for i in '(1 2 3 4) when (oddp i) collect i)
(1 3)
```[Quicklisp]: https://www.quicklisp.org/beta/
[SICL]: https://github.com/robert-strandh/SICL