vote up 5 vote down star
1

In another Q I saw someone mention LOGO and it reminded me of some programming language from the past, mostly used for educational purposes. Basically, you would have to program a turtle with a pen through it's back. By telling it where to move, the pen would draw lines. It could also lift the pen to move without drawing lines. I have fond memories of this language, since it was one of the first I've ever used, about 30 years ago. (Yeah, I'm old.) Well, I only programmed with LOGO for two days or so, but it got me hooked to programming.

But I wonder if the LOGO information on it's Wikipedia page is still correct. And more importantly, are there versions that will create .NET binaries? Are there only LOGO Interpreters and no compilers? What is the current status of this educational language?

And more interestingly, are there more experts here at SO who have experimented with LOGO in the past?

Yeah, I know. Nowadays this language is a bit antique but I got some warm and comfortable memories when I remembered this interesting language from my history. For a teenager back then, it was fun!

flag

2 Answers

vote up 2 vote down check

Yeah, I know. Nowadays this language is a bit antique but I got some warm and comfortable memories when I remembered this interesting language from my history. For a teenager back then, it was fun!

geez you must be old !

just kidding ... I do think all the information on Wiki are still accurate.

I also do think it is a dead language (or that it should be at least). as for the question about other experts who experienced it ... I don't think it never was a really used language ... maybe a bit at school but still i think there's some better alternative to that so i think people who got to code using LOGO must be rare. good luck with that.


Editing my post to say that after looking it up it seems like its still used quite a bit in university for robotic programming Link to site

link|flag
Well, I'm a year older than Logo itself. :-) I later found my Logo knowledge useful when I had to draw graphs on a plotter for some project. There are quite a few similarities, although the plotter didn't support procedures or even any math. – Workshop Alex Aug 27 at 7:53
vote up 2 vote down

Logo was one of the first languages I ever used, although only for drawing. Our classes were based on drawing simple geometric shapes (polygons), and simple pictures (e.g. a house, a car) - very interesting to a young programmer-child!

turtle is a modern implementation of Logo's turtle graphics in Python using Tk. It's part of the standard library, so if you have a Python install you can relive the good old days:

import turtle

for i in range(100):
    turtle.forward(i)
    turtle.left(15)

There are both object-oriented and procedural interfaces. It's still surprisingly fun.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.