Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the best language/IDE to use for teaching kids programming in an after-school group setting?

I'm looking for a programming language/development environment that has the following characteristics:

  • Runs on Windows
  • Includes an IDE
  • Free
  • Easy to install
  • Really easy to do graphics programming without using advanced language features.
  • Well documented

To elaborate on the purpose:

I am starting an after-school program to teach kids how to program. The end product of the course will be a simple but fun computer game that the kids can take home and run on their home computers if they wish.

The schools computers run Windows, and I will be using their computers. The course will be targeted towards students in the gifted program at a public school. The students will be 10-13 years old.

I will not consider visual-only programming languages such as Scratch or Alice for this group. If, at a later time, I do a class for younger children I will consider these programs.

This is a non-graded, purely optional after-school class. It is important that the course be fun as well as educational. That is why the focus will be on making a video game. I want kids to learn how to search reference documentation for an answer to their questions, so a well documented language/api is a must.

I have ruled out the following:

  • Scratch/Alice (too visual, perhaps useful for a younger audience)
  • LOGO (Not general-purpose enough, again, perhaps useful for a younger audience)
  • Lego Mindstorms (too expensive)
  • C/C++/Java/C# (too advanced – I would consider these for a 2nd language)
  • QBasic (I just wanted to mention this because I taught myself QBasic as a kid. It's obsolete now though)

The following are viable options that I have considered:

  • Microsoft Small Basic (I'm leaning towards this)
  • Python+pygame (I'm thinking this may be too complicated to start with though, also a setup headache for kids... what do you think?)
  • Hackety Hack (anyone have experience teaching with this?)
  • Squeak (seems more complicated than I would like)
  • Visual Basic (6.0 is obsolete, but VB.NET is possibly viable, but is the complexity worth it compared to MS Small Basic?)
  • Just Basic (not as “polished” as small basic)

I am a Software Engineer, and will be working with an experienced teacher to make this after-school program work.

I'm new to this, so any advice would be greatly appreciated!

share|improve this question
Have you decided what language to use? Did you start the after-school program? I was thinking about teaching kids programming some time ago, then I was stuck to this very question you asked. :) – leoinfo Sep 13 '12 at 15:59
Yes, we started the after-school program - we're half way through the first semester, and it's going great :) We are teaching 4th-graders (~10 year olds), using Scratch from MIT (scratch.mit.edu). If you are interested in starting one, email me; I'd be happy to answer any questions or help with the process. – Colin Feb 12 at 4:01
I started teaching my daughter Processing and she is not too enthusiastic about it. On the other side, Scratch seems, like you said, way too visual… One of the options you ruled out was Scratch, and you ended up using it. Were you to optimistic about what kids can “digest” at that age? Or you changed your opinion about Scratch? – leoinfo Feb 12 at 4:35
This is my first foray into teaching, so I wasn't sure where the kids would be intellectually. My end decision was to start with Scratch, and see if it was too easy/boring for them - if so, I would move on to a more practical language. I found that they are picking this up really quickly, but they're also having a lot of fun playing with Scratch (so am I to be honest!). So I plan to spend the last couple sessions getting them started with another language so the more motivated kids can keep progressing after the program ends. – Colin Feb 21 at 0:22

closed as not constructive by the Tin Man, GSee, Nicol Bolas, Aziz Shaikh, Jens Björnhager Dec 3 '12 at 13:18

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

Processing might be a good choice if you don't need a fancy IDE or graphical front end. It's a Java-based "creative coding" implementation.

Fun to use, huge community, loads of good example code + course materials, examples viewable on the web (also can generate exes)

share|improve this answer

Python will benefit them more than Basic in the long run methinks.

share|improve this answer

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