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

https://github.com/zfletch/lisp-c

Lispy calculator
https://github.com/zfletch/lisp-c

Last synced: about 1 year ago
JSON representation

Lispy calculator

Awesome Lists containing this project

README

          

# Lispy Calc

Lisp-like calculator. It currently supports addition and subtraction.

## Usage
```bash
$ ./calc '(+ 1 1)'
2
$ ./calc '(+ (+ 1 2) (- (+ 1 1) 10))'
-5
```

## Compiling
```bash
./compile.sh
```