TIDE
Languages

Forth

Installing Forth on Ubuntu in TIDE

Forth

Forth is a procedural, stack-oriented programming language and interactive environment.

Installation

GForth (GNU Forth) is available directly in the Ubuntu package manager:

apt update
apt install -y gforth

Verification

Check the GForth version:

gforth --version

Execution

Create a hello.fs file:

.( Hello, Forth in TIDE!) CR
bye

Run with GForth:

gforth hello.fs

Official Resources

On this page