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 ucblogoVerification
Check the UCBLogo version:
ucblogo --versionExecution
Create a hello.lg file:
print [Hello, Logo in TIDE!]
byeRun UCBLogo in batch mode:
ucblogo -b hello.lg