UCB-logo is the most famous variant of the logo programming language. Use this tag if your question has any doubt in this variant of logo programming language and not if the question is about the logo of UC Berkeley
About UCB LOGO
UCB-Logo, also known as Berkeley Logo, discovered at the University of California at Berkeley, is closest to a de-facto standard Logo programming language with its facilities for handling lists, files, I/O, and recursion in scripts, and can be used to teach most computer science concepts, as UC Berkeley lecturer Brian Harvey did in his Computer Science Logo Style trilogy. For tertiary level teaching, however, Logo has been superseded by Scheme, and scripting languages.
Install UCB Logo On Ubuntu
To install Berkeley Logo, you can use the command
sudo apt-get install ucblogo
Sample Program
to hello
print "|Hello World|
end
hello
References