TIDE
Languages

Logo

Installing Logo on Ubuntu in TIDE

Logo

Logo is an educational programming language known for its turtle graphics and list processing capabilities.

Installation

UCBLogo (Berkeley Logo) is available in standard Ubuntu repositories:

apt update
apt install -y ucblogo

Verification

Check the UCBLogo version:

ucblogo --version

Execution

Create a hello.lg file:

print [Hello, Logo in TIDE!]
bye

Run UCBLogo in batch mode:

ucblogo -b hello.lg

Official Resources

On this page