The programming language readable by non-developers!
Note: This project runs programs, but lacks some key features programming language should have.
This project uses CMake as build system.
Steps below were tested on Linux.
First of all, ensure you have CMake installed.
Then run theese commands:
git clone https://github.com/FireFragment/too-readable.git
cd too-readable
mkdir build
cd build
cmake ..
make
In the build directory, run:
./tooreadable ./test_code/testing_code.tor
It should print output of the sample program.
Then try editingtesting_code.tor
yourself (eg. change order of commands, create your own functions, etc.) and run it agin!
I use GTest framework for testing the code.
To run tests, run:
./tests
in the build
directory.