up vote 60 down vote favorite
44
share [g+] share [fb]

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

link|improve this question
7  
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 '09 at 19:29
12  
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 '09 at 19:45
4  
Shouldn't this be a question for moms4mom.com ;) – Amadiere Oct 25 '09 at 19:50
3  
Here's one of many duplicates: stackoverflow.com/questions/215585/… – gnovice Oct 26 '09 at 1:00
2  
The short answer is 'Any of them, if he's willing to learn.' – Steven A. Lowe Oct 27 '09 at 17:24
show 7 more comments
feedback

66 Answers

1 2 3

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|improve this answer
3  
+1 for the title alone! – Dan Oct 25 '09 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 '09 at 20:41
1  
+1 for Python ! – Mk12 Oct 26 '09 at 1:34
feedback

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

link|improve this answer
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 '09 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 '09 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 '09 at 19:05
1  
a good article concerning scratch cacm.acm.org/magazines/2009/11/… with good references – LB . Nov 30 '09 at 15:21
show 1 more comment
feedback

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|improve this answer
9  
-1. BASIC deserves to die! – Jason S Oct 25 '09 at 23:58
3  
Do you really want to mentally mutilate the poor kid beyond hope of regeneration? – Alexander Torstling Oct 28 '09 at 20:05
7  
-1 for BASIC and platform lock-in! Sorry but I think the other options (python, scratch, etc..) are better. – chrism1 Oct 28 '09 at 23:32
6  
+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 '09 at 16:27
4  
+2 Its funny to see how many people jump on the VB isnt cool bandwagon. Once you've learned the principles, jumping from one language to another is simple. I started off on vb.net and after a week of using c#, was able to use it just as effectively. And I'm not that smart. – NickAtuShip Dec 4 '09 at 6:54
show 3 more comments
feedback

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|improve this answer
1  
Same here. Started Visual Basic 6.0 when I was 11. Now I use .NET. – Austin Oct 26 '09 at 1:08
feedback
  • LOGO
  • NXT-G for Lego Mindstorms
  • Heck, there's always BASIC (I started with that)

A good list is here on Wikipedia.

Also see many related SO questions, especially this one

link|improve this answer
4  
How do I move the turtle in LOGO? – Nosredna Oct 25 '09 at 19:53
show 1 more comment
feedback

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|improve this answer
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 '09 at 8:37
show 3 more comments
feedback

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

link|improve this answer
1  
The Scheme dialect is very well suited for introductory programming. Common Lisp might be a bit much. – David Thornley Oct 27 '09 at 20:58
show 4 more comments
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
show 4 more comments
feedback

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|improve this answer
show 1 more comment
feedback

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|improve this answer
feedback

Now that Conrad Barski's Land of Lisp (see my review on Slashdot: http://books.slashdot.org/story/10/11/03/1238213/Land-of-Lisp) has come out, I definitely think Common Lisp is the best language for kids (or anyone else) to start learning programming.

Between Land of Lisp, David Touretzky's Common Lisp: A Gentle Introduction to Symbolic Computation (http://www-2.cs.cmu.edu/~dst/LispBook/ really great book for people new to programming, available for free) and The Little LISPer (3rd edition, editions four and up use Scheme) you have three really great resources to get started.

Lisp's syntax is a great advantage because it is so simple to learn and has so few special cases. The interactive, iterative development style combined with full late-binding and reflection means you can build programs in parts and add to them as you go, and you always have the ability to look at any part of your program and its state to find out what it's doing/what's wrong. The HyperSpec and Common Lisp The Language are two of the best programming language reference manuals ever written.

The best parts about Common Lisp is that it's a language that's hard to outgrow and it makes difficult things easy. One of the chapters in Land of Lisp explains HTTP and HTML and has you build a basic web server. That chapter is only 15 pages! There's tons of ideas in the language, and because you're not restricted to a particular programming paradigm, you're always discovering better ways of doing things and developing a personal style.

There's a pretty active Lisp game development community at http://lispgames.org/

link|improve this answer
show 1 more comment
feedback

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|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
3  
I completely agree about C#. I actually am 12 years old right now (no joke) and I'm doing C#, but I started programming at 7, so who knows. C# is quite easy to pick up as long as you can understand some of the most important concepts, but that's why we have Stack Overflow. I was able to do so, and I've done some work for a non-profit, so I think, after a little bit of learning, a kid can really get going with C#. – Maxim Zaslavsky Oct 31 '09 at 17:06
show 1 more comment
feedback

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

link|improve this answer
show 3 more comments
feedback

Depends on the kid. :)

But eToys might be a good start, it at least makes it simle to develop simple gaines. Although eToys is more or less a point&click language.

It might also depend on the kid's knowledge of English (if it isn't its native tongue).

link|improve this answer
feedback

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|improve this answer
3  
I have trouble understanding Ruby and I'm 27... ;) – Carlos Oct 25 '09 at 19:44
show 3 more comments
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

Im posting this through a proxy, because I do not ant this associated with my account. I am 14, and I am very well fluent in c#. I started learning it at 13 through web development

link|improve this answer
show 1 more comment
feedback

Programs like MIT's Scratch and Microsoft's Kodu are very good ways to teach the fundamentals behind programming without being overwhelming.

Kodu is geared towards developing games on your xbox so this may appeal to him.

link|improve this answer
show 1 more comment
feedback

I think C# is the way to go (someone already mentioned it, but whatever). I actually am 12 years old right now (no joke) and I'm doing C#, but I started programming at 7, so who knows. C# is quite easy to pick up as long as you can understand some of the most important concepts, but that's why we have Stack Overflow. I was able to do so, and I've done some work for a non-profit, so I think, after a little bit of learning, a kid can really get going with C#.

Now, the kid in question is oriented towards games, so why not try XNA? XNA provides a great design interface (very simple to use - drag & drop!), and once you understand the basics, it is very fun, especially for a kid this age. I really think you should try going the XNA route, and see how the kid feels.

link|improve this answer
feedback

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|improve this answer
feedback

Turbo pascal should be the best choice :)

link|improve this answer
feedback

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|improve this answer
feedback
1 2 3

Your Answer

 
or
required, but never shown

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