Logo
A high-level programming language noted for its ease of use and graphics capabilities. It is a recursive language that contains many list processing functions that are in LISP, although Logo's syntax is more understandable for novices.
Command the Turtle
Turtle Graphics is the graphics language built into Logo, which allows complex graphics images to be created with a minimum of coding. The turtle is a triangular-shaped cursor, which is moved on screen with commands that activate the turtle as if you were driving it, for example, go forward 100 units, turn right 45 degrees, turn left 20 degrees.
The following Object Logo example converts Fahrenheit to Celsius:
convert local [fahr] print "|Enter Fahrenheit | make "fahr ReadWord print "|Celsius is | print (:fahr - 32) * 5 / 9 end
Computer Desktop Encyclopedia THIS DEFINITION IS FOR PERSONAL USE ONLY
All other reproduction is strictly prohibited without permission from the publisher.
Copyright © 1981-2009 by Computer Language Company Inc. All rights reserved.
Browse dictionary definitions near Logo
Share on Facebook