Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```