Term of the Moment

Big Tech


Look Up Another Term


Definition: FORTH


(FOuRTH-generation language) A high-level programming language created by Charles Moore in the late 1960s as a way of providing direct control of the computer. Resembling LISP syntax, FORTH uses reverse polish notation for calculations, and it is noted for its extensibility.

It is both compiler and interpreter. The source program is compiled first and then executed by its operating system/interpreter. It is used in process control applications that must quickly process data acquired from instruments and sensors. It is also used in arcade game programming as well as robotics and other AI applications. The following polyFORTH example converts Fahrenheit to Celsius:

 : CNV ( n) 32 - 5 9 * / . ." Celsius
 : user_input  ." Enter Fahrenheit " CNV ;