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 gforthVerification
Check the GForth version:
gforth --versionExecution
Create a hello.fs file:
.( Hello, Forth in TIDE!) CR
byeRun with GForth:
gforth hello.fs