Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opensourcedoc/cl-boilerplate-application
Common Lisp Boilerplate to Build an Application
https://github.com/opensourcedoc/cl-boilerplate-application
boilerplate-application common-lisp lisp
Last synced: 24 days ago
JSON representation
Common Lisp Boilerplate to Build an Application
- Host: GitHub
- URL: https://github.com/opensourcedoc/cl-boilerplate-application
- Owner: opensourcedoc
- License: mit
- Created: 2022-03-15T03:19:31.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-10T23:40:18.000Z (almost 3 years ago)
- Last Synced: 2024-11-10T04:38:24.653Z (3 months ago)
- Topics: boilerplate-application, common-lisp, lisp
- Language: Common Lisp
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cl-boilerplate-application
Common Lisp boilerplate to build an application.
## System Requirements
### Common Lisp Implementation
One of the following Common Lisp implementations:
* [SBCL (Steel Bank Common Lisp)](http://www.sbcl.org/)
* [Clozure Common Lisp](https://ccl.clozure.com/)
* [CLISP](https://clisp.sourceforge.io/)
* [Embeddable Common Lisp](https://ecl.common-lisp.dev/)
* [ABCL (Armed Bear Common Lisp)](https://armedbear.common-lisp.dev/)Among those implementations, SBCL is recommended for Lisp newcomers.
### Third-Party Library
[cl-portable](https://github.com/cwchentw/cl-portable) is used for portable code.
## Synopsis
### Interpretation Mode
```shell
$ abcl main.lisp
Hello World
```### Compilation Mode
```shell
$ sbclrun main.lisp
$ ./program
Hello World
```## Copyright
Copyright (c) 2022 Michelle Chen. Licensed under MIT