Skip to content
/ laskin Public

Reverse Polish calculator / scripting language inspired by Forth and RPL.

License

Notifications You must be signed in to change notification settings

RauliL/laskin

Repository files navigation

Laskin

build

Laskin is a reverse polish notation calculator / programming language inspired by Forth, RPL and Plorth.

Try it in your browser.

Requirements

Other dependencies already included in the source code repository as Git submodules:

On Ubuntu, requirements for the compilation of this software can be installed with this command:

$ sudo apt install build-essential cmake libgmp-dev

How to compile

$ git clone https://github.com/RauliL/laskin.git
$ cd laskin
$ git submodule update --init
$ mkdir build
$ cd build
$ cmake ..
$ make