Installation
Installing the compiler and standard library
Compiling
CMake, Make, a C++17 compatible compiler (GCC >= 7), and an assembler that uses AT&T syntax are required.
Run the following commands to build the compiler:
Then use the compiler to bootstrap the standard library:
You should now be ready to compile your first program! Write the following in a forth file
hello.forth
And build it with the following commands:
Last updated