Łukasz Lew
Łukasz Lew

Reputation: 50328

Which LOGO implementation?

I want to show my young cousin (12) programming. I think that LOGO is a good start. Which implementation should I use? (windows)

Upvotes: 7

Views: 1476

Answers (3)

Michael Burr
Michael Burr

Reputation: 340326

You might want to also consider "Small Basic": http://msdn.microsoft.com/en-us/beginner/ff384126.aspx

I have no experience with it, so I might be a bit off-base, but it seems to have a few fans:

Upvotes: 2

Jacinda
Jacinda

Reputation: 5072

Starlogo TNG is a good graphical implementation of Logo that can make it really fun for kids to learn. It uses a block-programming interface and 3D graphics so it looks to kids like they're immediately playing a game. http://education.mit.edu/drupal/starlogo-tng

Something else I've used before is RAPTOR, which is a flowchart interpretor. It's good for teaching algorithms at a high level without having to spend time learning syntax. http://raptor.martincarlisle.com/

Upvotes: 1

MexicanHacker
MexicanHacker

Reputation: 2685

I would use this for windows

  1. http://fmslogo.sourceforge.net/
  2. http://www.softronix.com/logo.html
  3. Others here: Logo programming language implementations

I wouldn't teach Visual Basic to a person or child that is starting to program, a non static language it's preferred. Also I won't teach PHP to anyone, but that's a personal taste.

You can also take a look at Alice. Which is a language some people also use to teach kids.

http://www.alice.org/

Upvotes: 7

Related Questions