loscoala | 1 year ago | on: What you learn by making a new programming language
loscoala's comments
loscoala | 2 years ago | on: Forth: The programming language that writes itself: The Web Page
I have implemented yet another forth by myself. It works a little bit different and it is not intended to be a true copy of the original idea.
Since the post says you can discover Forth, here's my part:
https://github.com/loscoala/goforth
The main difference is that in this Forth variant, the source text is completely translated into bytecode and there is no runtime in the sense of classic Forth. This makes it easy to translate the bytecode to C.
I use my own Forth to generate C code with it, which I then embed in other software.
page 1
For the interested reader:
https://github.com/loscoala/goforth
It was a great experience and I can only recommend trying to develop a programming language yourself.