vote up 40 vote down star
36

Possible Duplicates:
What is the easiest language to start with?
What are some recommended programming resources for pre-teens?

My son is 11 years old and he would like to learn a programming language. Of course his primary goal is to develop some (simple) games.

Do you know of a programming language that is suitable for this situation?

Summary of languages recommended in the answers

flag
4  
I started coding in QBASIC and DOS batch files when I was 6. I guess it should be very easy to pick up a Basic variant (VB.NET) if your native language is English. – Mehrdad Afshari Oct 25 at 19:29
10  
Avoid any form of BASIC. Find two or three good possibilities, go to their sites and compare them. Remember that every kid is different, there is no ideal language for 11 yo kids, just the best choice for your particular child and you will have to make that decision. – Michael Dillon Oct 25 at 19:45
3  
Shouldn't this be a question for moms4mom.com ;) – Amadiere Oct 25 at 19:50
3  
Here's one of many duplicates: stackoverflow.com/questions/215585/… – gnovice Oct 26 at 1:00
1  
The short answer is 'Any of them, if he's willing to learn.' – Steven A. Lowe Oct 27 at 17:24
show 7 more comments

62 Answers

vote up 1 vote down

11-year old kid is old enough to tackle any language.

I'd recommend Scratch, Logo and similar for kids up to, say, 10.

link|flag
vote up 3 vote down

Jeff seems to think you should get kids started with "C++ GUI Programming"

link|flag
show 1 more comment
vote up 2 vote down

I would have thought JavaScript would be a good language for him to start out with. The language is compact and safe (can't crash the operating system), and runs in a web browser. What's more, JavaScript is a nice language to learn.

link|flag
vote up 1 vote down

Hi, He is 11 and he is into games. That's a hint. You should get him started in something that will not only be fun but he will learn something. In fact, there are two projects geared towards beginner programmers and/or those who are into games and would like to start programming.

  1. Karel programming: This is use by Stanford university. In fact, all comp. sci students must use this before jumping into Java or Scheme courses. This is very beginner. If you wanna look at the environment, the link below is for the course where Karel is introduced to the students:

  2. Alice programming developed at CMU. In fact, the whole concept of Alice project is to teach programming to kids while making it fun at the same time. There have also been books published on the subject. You can search for Alice on Carnegie Mellon University site or or google it.

Karel Programming - introduced to Stanford students

link|flag
vote up 1 vote down

Turbo pascal should be the best choice :)

link|flag
vote up 0 vote down

Microsoft Small Basic is a great environment for learning programming. It's free, and he can get started and work through the PDF documentation...

Once he's mastered that, he can move on to Dark Basic.

Finally, he can learn C programming and use the DarkBasic engine's C bindings to leverage the graphics knowledge he'd have at that point combined with a real language.

link|flag
vote up 3 vote down

Give him C#, seriously, and don't be suprised when he knocks up code in few years of better quality than majority of dump out there.. Many people around me were at that age already picking at C and various asm dialects, they all have kids and love looking at them ripping it apart so quickly although gaps to fundamentals become very obvious (just like it is with pure orange Java grads)..

C# makes it too easy, a kid just eats it especially with VS2008 and its designers and popular refactoring tools. Try it out and you'll be shocked how quickly he'll rip through it.. what else to expect..

Don't let him/her program games straight away but do encourage him to analyse other people's code (as well as simple game code, XNA and friends say, many libs out there).. to go through what he thinks are interesting portions.. Demos will attract him too and is the best way imho. API or framework is not that relevant at all and by the time he finishes high school it will be a new one anyway, whatever v10 CLR and v15 Java and v8 Google shove down the throat of goats..

Btw, there are 15 year olds working through git and managing pretty complex builds of C and C++ tools and sure that's an extreme example.. but don't underestimate their capacity and ability to take on complexity, it's incredible..

link|flag
show 2 more comments
vote up 2 vote down

The language itself isn't important; kids are capable of amazing things where they're interested and motivated. The challenge is finding something that allows them to do "cool" stuff with their computer, to spark that motivation. That's why LOGO and BASIC were popular in the 80s, and Hypercard in the 90s, because they targeted the core functionality of the computer on which they ran. Python/Ruby/etc. may be appropriate as a language, but they alone aren't suitable for getting someone interested in programming.

There was a project called Shoes that provided an easy SDK for graphics, media, and web, on top of Ruby. It was designed specifically for kids and casual programmers. Unfortunately it's not around anymore, but was the most interesting and suitable LOGO/BASIC/Hypercard replacement for modern computing that I've seen.

link|flag
vote up 5 vote down

Inform is a domain-specific language for writing text adventure games. Inform source code looks almost like a script for a play.

If your son likes reading, I can't think of a better first programming language; if he's more visually inclined it might not be such a good choice.

link|flag
show 3 more comments
vote up 8 vote down

I would try python. It's easy to follow and intuitive, without a lot of magic or mystery. Also, it's one of the top languages in the industry - might as well learn a job-maker :)

link|flag
vote up 0 vote down

VisualBasic 6 was great as an introductory language. I used to teach it to kids (mostly simple games like frogger and pacman -type things) in that age range. If they wanted, they would later move to more advanced courses in Java and C/C++. When we had to transition to .NET, it was a little rough at first and it wasn't as teachable.

I still think VB .NET is probably a good choice. The syntax being in plain words (rather than cryptic symbols) seemed to help with beginners. The visual Forms Designer is probably plenty powerful enough for whatever he needs, he can have a nice interactive GUI app up and running in no time. Also, if you set him up with the Express Edition, it's not likely he'll be turned off by a complex IDE (seen it happen with Eclipse).

link|flag
vote up 0 vote down

At the age of 13 I wrote my own Minesweeper in Pascal (including mouse and cheats). Unfortunately, at the age of 14 I learned how to format my harddrive with int 13.

Definitely your son should try a more advance programming language than Basic. These days, Python is even simpler/popular than Pascal. Give him a computer to play with (including installing operating system and taking it apart) and let him learn by trying.

link|flag
vote up 6 vote down

You have the opportunity to start him out right. Start him with Lisp.

link|flag
show 5 more comments
vote up 9 vote down

I like Alice a lot. You can do pretty cool things using it.

The Blender Game Engine is really interesting too, it's a bit more difficult but you can create amazing games.

link|flag
show 1 more comment
vote up 0 vote down

80x6 Assembler. Get them while their young ;-)

link|flag
2  
Actually my Pa taught me machine code when I was 4, wrote my own OS by 6. – ChaosPandion Oct 25 at 21:51
vote up 12 vote down

How about Processing?

It's not really aimed at games, but more at creating interactive visual widgets.

It's basically simplified Java, and right off the bat you have visual feedback - here's a complete sample program that will draw a multicoloured line with your mouse:

int oldX;
int oldY;

void draw()
{
  stroke(random(255), random(255), random(255));
  line(oldX, oldY, mouseX, mouseY);
  oldX = mouseX;
  oldY = mouseY;
}

The Processing IDE gives you a very easy way of managing "sketches" (programs) and a means of publishing your programs as web pages with applets. Also the built-in examples show how you can get some pretty cool effects with just a page or so of code.

link|flag
1  
Since it's essentially a layer on top of Java, you can debug it within a Java IDE like Netbeans or Eclipse. – therefromhere Oct 27 at 8:37
show 3 more comments
vote up 3 vote down

As a programmer, if you want to develop the skills on your boy then I would recommend you teach him the Scheme language. its most popular implementation, Dr. Scheme has very detailed documentation for learning and game programming using the functional paradigm. If he learn Scheme now, C and Java will be a breeze.

link|flag
show 1 more comment
vote up 21 vote down

Scratch. Don't underestimate it just because it's drag-and-drop. MIT uses it for their intro computer science class.

link|flag
1  
MIT's intro CS class has fallen from its days of Scheme to Python, but I don't think they've started using Scratch. :-) Still, +1, for Scratch is great at getting kids into programming: many of the kids learn and understand recursion just because it lets them draw cooler patterns, etc. – ShreevatsaR Oct 25 at 20:53
1  
+1 on the vote for scratch. I got to see it in action in the hands of this same age range (11-12 year olds) this past summer, and it was reasonably effective at explaining basic programming concepts. – chsh Oct 26 at 1:11
1  
I installed Scratch and it's really great. My son was able to write some small programs immediately. Now he's downloading some examples from the website and modifying them is great fun. Scratch is even adopted the local language (german). Thanks for the recommendation! – tangens Nov 5 at 19:05
1  
a good article concerning scratch cacm.acm.org/magazines/2009/… with good references – LB Nov 30 at 15:21
show 1 more comment
vote up 5 vote down

Whatever you choose, kids need immediate feedback. Myself, when I was 11, was amused by the simplicity of Qbasic's PLAY command (plays musical notes using the PC speaker):

PLAY "CEFG."

Later I learned the drawing commands, and then I built my first games. So keep in mind:

  1. Audio
  2. Image
  3. Games

If those 3 things are easy to do, it will keep him interested.

link|flag
vote up 6 vote down

My son started learning Hypercard when he was 7 years old, using a 2-inch think book called the Hypercard bible. At age 11, your son should be capable of handling a reasonably powerful programming environment as long as it doesn't require too much domain knowledge. Either C or C++ would be too advanced for that age.

Java is a possibility if you use a teaching environment such as BlueJ to avoid the hard bits until later. However, if he is thinking of graphical games, then this framework might not provide enough support for him.

Another, even more scaleable environment is Squeak Smalltalk, but the risk with that is that as he gets more advanced, it will be beyond your ability to help him unless you already have a grasp of Smalltalk, are or good at learning new languages.

A nice balanced choice is Python with the PyGame library. You have an object-oriented language so that he will learn concepts that will be useful later in other languages, and the PyGame library supports writing some fairly sophisticated games. In addition, Python can be used to produce binaries with everying in one .EXE file to share with friends. Have a look at the PyGame site where you can find many sample games that have been created for the many PyGame programming contests. With 370 arcade games on offer, he should be able to find something interesting and perhaps begin by modifying it rather than starting from scratch.

link|flag
vote up 50 vote down

Snake Wrangling for Kids

Learning to Program with Python.
Copyright © 2007. All Rights Reserved.

“Snake Wrangling for Kids” is a printable electronic book, for children 8 years and older, who would like to learn computer programming. It covers the very basics of programming, and uses the Python 3 programming language to teach the concepts.

link|flag
3  
+1 for the title alone! – Dan Oct 25 at 19:50
1  
And for those who remember about the Logo language used to teach programming to children, there is the turtle module in Python too (docs.python.org/library/turtle.html). – RedGlyph Oct 25 at 20:41
1  
+1 for Python ! – Mk12 Oct 26 at 1:34
vote up 3 vote down

I coulda done python and pygame at age 11.

I was a QBasic kid myself, the simpler python constructs are probably even easier, and it scales upward to harder concepts.

link|flag
vote up 1 vote down

Revolution at http://runrev.com

It's an english like lang based on HyperTalk, though it's grown a lot since the 80's. Runs on Mac, Windows and Linux. VERY easy to learn.

I don't use it much anymore, since it's VERY hard to find developers for. And in the real world it's about being marketable. But it's a wonderful language.

link|flag
vote up 2 vote down

Try VisualBasic Express. It's a simple language that will teach him concepts he will need for lower level languages. It's also free.

link|flag
vote up 2 vote down

If you're looking for a real-world programming language that can be understood by an 11-year old, Ruby is a good option. Toy languages are cool, but limited in what they can accomplish. At 9, I was copying BASIC programs out of magazines. By 10, I was writing in C, because I'd gone way past the limits of what BASIC could accomplish. If I had had Ruby back then, I would have been very, very happy.

I highly recommend Chris Pine's Learn to Program. He also has an online tutorial that contains much of the same content as the book.

I would, however, recommend not pushing your kid into programming if he's not showing an interest in it. Just because you love it doesn't mean your kid will.

link|flag
3  
I have trouble understanding Ruby and I'm 27... ;) – Khilon Oct 25 at 19:44
show 3 more comments
vote up 2 vote down

I have heard some good things about Phrogram. It is a simple language, designed for kids and it targets the .NET platform.

link|flag
vote up 0 vote down

Depends on the kid..... I don't know any languages in which it easy to develop games (except gamemaker script language).. bu personally I'd start with a serious language.. C#, or java, or whatever you use, and actually learn him the basics of programing, if he get it, he will thank you indeed when he'll grow up. if not, nothing happened, search for something simpler.

I've done so with my brother.. and he found his own way to develop games with .net's WinForms :)

link|flag
show 2 more comments
vote up 22 vote down

Have a look at Small Basic from Microsoft's DevLabs. It is designed as a simple (.Net based) language and comes with its own editor with intellisense. It also has an option to "graduate" to Visual Basic.

A description from the DevLabs site:

  • Small Basic derives its inspiration from the original BASIC programming language, and is based on the Microsoft .NET platform. It is really small with just 15 keywords and uses minimal concepts to keep the barrier to entry as low as possible.
  • The Small Basic development environment is simple, yet provides powerful modern environment features like Intellisense™ and instant context sensitive help.
  • Small Basic allows third-party libraries to be plugged in with ease, making it possible for the community to extend the experience in fun and interesting ways.
link|flag
5  
-1. BASIC deserves to die! – Jason S Oct 25 at 23:58
1  
Do you really want to mentally mutilate the poor kid beyond hope of regeneration? – disown Oct 28 at 20:05
5  
-1 for BASIC and platform lock-in! Sorry but I think the other options (python, scratch, etc..) are better. – chrism1 Oct 28 at 23:32
3  
+1 because of all the basic bashing going on. there is nothing wrong with small basic in educational context. and there is no "lock in" for .net either (see mono). – ssg Nov 1 at 16:27
show 4 more comments
vote up 2 vote down

Lego NXT-G, the graphical Labview-based programmer included with Lego Mindstorms is a great product. You can use it to develop trivial games on the NXT device, but it wouldn't be suitable for learning general-purpose programming (or PC-based game programming).

I'd say NXT-G is a good starting off point for learning concepts in an engaging environment before going to something more text based.

link|flag
vote up 15 vote down

I started with Visual Basic 6 when I was 11. Then moved on to some pure BASIC because that was all my own computer had. Although I'm no fan of Visual Basic today, the fact that I could drop a button in a window, click on that button, write some code for just that button etc. made it a bit easier to understand what was going on.

link|flag
show 1 more comment

Your Answer

Get an OpenID
or

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