https://www.freebsd.org/cgi/man.cgi?query=loader&sektion=8
Also, while it's not Forth, it could be argued that the RPL language as used on HP scientific calculators, is a kind of higher-level Forth produced by cross-breeding with Lisp. Indeed, its name, while officially not an acronym, originated as "Reverse Polish Lisp". Its implementation is also kinda awesome, because it has two layers - User RPL, which is more high-level and completely memory-safe, with error checking everywhere, and is exposed directly to calculator users; and System RPL, which basically just compiles the source directly to a bunch of call opcodes (so if you mismatch the stack at any point, it just crashes), and which is used to implement the calculator OS and stock apps, as well as User RPL.
http://sunsite.uakom.sk/sunworldonline/swol-10-1995/swol-10-...
Then again, part of the charm of forth is how easily it is to bootstrap your own forth on your own system. There could be countless homegrown forths out there, in addition to these commercial offerings.
I haven't used forth for anything in production, myself. I just think it's a really interesting language. It's a great "what if" question. What if everything built on C had been built on Forth instead? What if all the work in improving the C language, tooling, operating systems, libraries, hardware etc had been spent improving Forth and stacks instead? It's fun to ponder.
If you want to read more about forth, check out Thinking Forth[2]. It's really got some great insights about programming and software design in general, not just applicable to forth programming in particular.
Starting Forth[3] is also good more of a beginner's introduction to forth. And Moore's own Problem Oriented Language is a good book talking about what his intentions were when he created forth[4].
For more reading: This page has a lot of good forth links too [5] Chuck Moore's color forth blog[6] This site has lots of interviews with Chuck Moore on it and other forth opinion pieces[7] Forth Interest Group site[8]
There's also a new forth standard that's being worked on[9]. Seems pretty active, too.
[0] http://www.mpeforth.com/software/pc-systems/vfx-forth-for-wi...
[1] https://www.forth.com/swiftforth/
[2] http://thinking-forth.sourceforge.net/
[3] https://www.forth.com/starting-forth/0-starting-forth/
[4] http://www.forth.org/POL.pdf
[5] http://www.complang.tuwien.ac.at/projects/forth.html
[6] https://web.archive.org/web/20160305013837/http://www.colorf...