Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kajizukataichi/kajisp
Simple, easy to understand, high-performance and safe LISP dialect
https://github.com/kajizukataichi/kajisp
lisp lisp-dialect lisp-interpreter
Last synced: about 2 months ago
JSON representation
Simple, easy to understand, high-performance and safe LISP dialect
- Host: GitHub
- URL: https://github.com/kajizukataichi/kajisp
- Owner: KajizukaTaichi
- License: mit
- Created: 2024-07-12T09:10:14.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-08-22T15:54:17.000Z (6 months ago)
- Last Synced: 2024-11-06T15:21:05.377Z (3 months ago)
- Topics: lisp, lisp-dialect, lisp-interpreter
- Language: Rust
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Kajisp
Simple, easy to understand, high-performance and safe LISP dialect## Usage
Type below command, then open REPL
```
cargo run
```
```
Kajisp - simple Lisp dialects
(c) 2024 梶塚太智. All rights reserved
> (def number (input "Enter the number: "))
> (if (= (% (number) 2) 0)
> (data println "It's even")
> (data println "It's odd"))
>
Enter the number: 9
It's odd
```