What is Oforth ?
Oforth is an imperative, dynamic typed, stack-based language.
Oforth is a Forth dialect (Oforth is for Object + Forth). It keeps Forth mecanisms while implementing a full object model.
Oforth has been designed to provide :
- A dynamic, fast, concise language.
- An object oriented programming support and object metamodel (classes, methods, ...)
- Automatic garbage collection with an incremental mark and sweep garbage collector.
- Althought imperative, support of functional programming features (and closures using blocks).
- Support for parallelism using light-weight tasks and communication between tasks using channels.
Getting started
Binary installation :
- Download oforth release corresponding to your platform here
- Oforth release is an archive with an oforth directory. Copy this directory at a location of your choice.
- Set OFORTH_PATH environnement variable value to this directory (see INSTALL.TXT file for details).
- Launch oforth interpreter using oforth --i command line : you are ready to begin tutorials here or read manual.
- Oforth is open source : you can download the sources and build a binary (see Oforth manual).
- Then you can change the binary provided by one of the releases.
13/10/2018 : EuroForth 2018 conference videos and papers
This year, EuroForth conference was in Edinburg. Videos are available Here One of them is about method dispatch in Oforth Papers are available here
23/09/2018 : Oforth V1.2 is released
Oforth V1.2 introduces dual words (see chapters 10 and 11 of the manual) Some changes and fixes (see change log for more information) - Franck -
07/05/2018 : Oforth V1.1 is released
Oforth V1.1 supports Mac OS systems Some changes and fixes (see change log for more information) - Franck -