zachwick / zlisp

A RPN Lisp-like language

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

zlisp is a stack based, RPN lisp-like language.

## (R)everse (P)olish (N)otation

    2 2 +

The above yields `4`

    2 2 + 5 *

The above yields `20`

Note that an operator always comes _after_ the operands. This notation lends
itself well to stack manipulation.

About

A RPN Lisp-like language

License:GNU General Public License v3.0


Languages

Language:C 96.6%Language:Makefile 3.4%