Questions tagged [logo-lang]

Logo is a computer programming language, created mainly for the purposes of education. Please do not use this tag for questions regarding graphical corporate-logos.

Logo was created in 1967 at Bolt, Beranek and Newman (BBN), a Cambridge, Massachusetts research firm, by Wally Feurzeig and Seymour Papert.

Its intellectual roots are in artificial intelligence, mathematical logic and developmental psychology. The first four years of Logo research, development and teaching work was done at BBN.

The first implementation of Logo, called Ghost, was written in LISP on an SDS 950. The goal was to create a math land where kids could play with words and sentences. Modelled on LISP, the design goals of Logo included accessible power and informative error messages.

The use of virtual Turtles allowed for immediate visual feedback and debugging.

This tag was previously named logo, but it was renamed to logo-lang due to confusion with graphical corporate logos. See this meta discussion for more information behind the rationale for the name-change.

References

Sample Program

; draws a square with sides 100 units long
FORWARD 100
LEFT 90
FORWARD 100
LEFT 90
FORWARD 100
LEFT 90
FORWARD 100
LEFT 90
47 questions
-2
votes
1 answer

Animation in LOGO

I have created a nice pattern using the following one line code repeat 36 [repeat 10[fd 10 rt 36] rt 10] Now I want this to appear as if it is rotating. I have tried to clear the screen and then rotate the turtle a at a specific angle and then…
Bhargav Rao
  • 50,140
  • 28
  • 121
  • 140
-5
votes
1 answer

Program to print a circle of given diameter

I am trying to write a program to print a circle of given diameter in Berkeley logo. I get the input diameter from the user of the program and draw a circle accordingly. But I do not know of any method to display a circle given the diameter. All…
Bhargav Rao
  • 50,140
  • 28
  • 121
  • 140
1 2 3
4