Lambda Calculus Interpreter
very simple lambda calculus interpreter to play with.
tested on Ubuntu Xenial 16.04.3 LTS
# deps
apt-get install cmake
apt-get install libreadline6 libreadline6-dev
# build
mkdir build
cd build && cmake ..
make
echo '(\x.x)(\x.x)awesome' | ./lc
Code is in a single header file (might change).