Systems & hardware
Forth
Forth is a unique, stack-based programming language and environment designed for programming embedded systems, real-time applications, and operating systems. It is known for its extensibility, efficiency, and the ability to directly manipulate hardware, making it popular in certain low-level and embedded applications.
Share this starting point
code.study/forth
- Created by
- Charles H. Moore
- First appeared
- 1968
- Official resource
- Visit the main website
Your first program
Hello, World!
: hello ." Hello, World!" cr ; hello