Installation
Installing the compiler and standard library
Compiling
$ mkdir build && cd build
$ cmake ..
$ make$ cd .. # in the root directory now
$ make # forthc needs to be located in build/forthc: main
"Ciao, Mondo!\n" puts
;$ forthc hello.forth | as -o hello.o -
$ ld hello.o /usr/lib/forth/libfstd.a -o hello
$ ./hello
Ciao, Mondo!Last updated