Getting Started
Run compiler on compc/src/CompC.c to generate CompC executable. Copy eforth.cmp in directory containing CompC. Run CompC executable.
Linux
- cd compc
- mkdir build
- cd build
- gcc ../src/CompC.c -o CompC
- cp ../eforth.cmp .
- CompC
Windows CMake
- cd compc
- mkdir build
- cd build
- cmake -G "NMake Makefiles" ..
- nmake
- copy ..\eforth.cmp .
- CompC