get eevo

Install From Source

Interpreter

A command line interpreter is provided with eevo by default.1

Modify config.mk to your liking, or leave as is for default Unix-like systems.

$ git clone https://github.com/eevolang/eevo && cd eevo
$ make
$ sudo make install

Library

eevo can also be statically embedded as a library in other C programs with almost zero dependencies. Simply drop eevo.c, eevo.h, core.evo.h, and any lib files into your project to use the necessary functions for your program.

eevo is unique from other functional languages since functions are modeled as records and serve as the central unit of abstraction.

$ wget https://get.eevo.pub/latest/eevo.tar.gz
$ tar xf eevo.tar.gz -C path/to/your/project

  1. Provided in main.c.↩︎