vote up 36 vote down star
34

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
3  
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
7  
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
1  
Shouldn't this be a question for moms4mom.com ;) – Amadiere Oct 25 at 19:50
2  
Here's one of many duplicates: stackoverflow.com/questions/215585/… – gnovice Oct 26 at 1:00
show 8 more comments

58 Answers

1 2 next
vote up 0 vote down

LOGO. I learnt it when I was 12. It was quite fun then. I heard Alice is pretty good too.

link|flag
vote up 1 vote down

Okay... I am 11 years old, and I can program in C, C++, C#, PHP, Java, Perl, Python, ASP, ASP.NET, BASIC, and pretty much everything else that is used by "real programmers" For example, I would use the win32 API, instead of scratch. So, pretty much any programming language is good for an 11 year old, as long as he has a fairly big brain capacity.

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

Be prepared to try several languages. The write/run/test feedback cycle is more important than the syntax.

With my daughter I did some Logo, then some html/jquery/svg, then some Java, then most recently she's taken to Python. She's not an expert in any of them but each time she had a little interest we sat down and ran some code.

Spend the time talking about their goal and writing a little code that they can play with. It can be a great shared experience if you don't get hung up on details and just make it part of playing. Give up when they get bored and just come back to it another time.

link|flag
vote up 1 vote down

I can't believe no one has mentioned Lua. It has a simple yet readable syntax, powerful features, and above all Does Not Use Zero-Based Arrays! Great for any young kid learning to program.

link|flag
vote up 0 vote down

This past summer I started my 12 year old out with "Game Programming for Teens" by Maneesh Sethi published by Course Technology PTR in 2009 (ISBN - 10:1598635182, ISBN - 13:9781598635188). It uses Blitz Basic which is a bit different from the other suggestions here but it is targeted for game programming which is reflected in its API. He has really enjoyed using it.

The language is procedural. The API is, however, well suited for creating games.

The book does a good job of explaining how to create programs and it progresses nicely from simple to complex. It stats out with character (as in alphabetic) based games and moved on to graphics.

We would recomend it,

Ian

link|flag
vote up 0 vote down

QBasic? I had a lot of fun with it :)

link|flag
vote up 1 vote down

If Blender Game Engine or XNA is worth considering, you should also consider

Unity 3D

It's impressive how much you can do with it without much programming. Also it is much more beginner-friendly than the Blender Game Engine (although this is subjective).

Supported languages are JavaScript (default), C# and/or Boo (Python variant). Note that these are not languages meant to learn programming.

Bonus: Basic version is free (as beer) since version 2.6

Overview on all three here

link|flag
vote up 0 vote down

Kids can learn anything, if you can teach it.

Do NOT underestimate them.

Start with the language you know best and love.

I started mine with C (18 years ago) when SHE was 4 years old.

She understood pointers before she was 5 and was touch typing before she could write.

She is better than me nowadays and sure has a better job and education than I (works for a bank in the City).

link|flag
vote up 1 vote down

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|flag
vote up 2 vote down

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|flag
show 1 more comment
vote up 0 vote down

When there are 11 year old network admins out there, I wouldn't worry about picking an easy or starter language. Kids pick up things fast if they have the interest. If you give your child a mainstream programming language he will be much better off after learning it (and finding a lot of code samples online for further discovery) because then he can start immediately applying it. Too often we try to dumb things down for kids.

Edit: So my vote of languages to start with are either C# (Microsoft platform) or Java (for other platforms, even Windows)

link|flag
vote up 0 vote down

StarLogo. Mitchel Resnick wrote a whole book (Turtles, Termites, and Traffic Jams) about exploratory simulation of parallel living systems based on examples coded by students using the language. It's a thin book but interesting from the ALife perspective; I've always wanted to try playing with it (but never had the time).

link|flag
vote up 0 vote down

SmallBasic from Microsoft. We use it to teach artists and designers how to make simple games. Some -not I - say the 11 year old would be more advanced.

link|flag
vote up 1 vote down

Hackety Hack is a free Ruby-based environment aiming to make programming easily available to beginners, especially teenagers. Its driving force was an essay titled The Little Coder's Predicament written in 2003 by why the lucky stiff (AKA _why). It argued that programming isn't as readily available as it was in the Commodore 64 days, and that something should be done about it to help beginners tinker with their computers.

Hackety hack on Github

link|flag
vote up 0 vote down

Flash and actionscript. You get visual feedback easily and you can then start to program games with simple onKeyPress methods.

link|flag
vote up 0 vote down

I remember finding BASIC very interesting when I was 11. However, a few years later when computer course came to our school we started with LOGO.

I guess there are many languages like ruby, C#, python which are the BASIC's of today in terms of easiness to get started with. Of course, at 11 years I'd probably stick to the very basics of these languages.

Unlike programs though, I would suppose the examples would not change from my days to today. I'd suppose lesson will still start with simple loops, and be complete with the Tower of Hanoi!

link|flag
vote up 0 vote down

Groovy Programming Language with GroovyConsole and buy him his first programming book =)

link|flag
vote up 0 vote down

Lots of great choices: Inform 7, Scratch, Ken Kahn's ToonTalk, Logo, DrScheme, Alice. DrScheme will teach the most principles but is limited pretty much to 2D graphics-style games. Inform 7 is brilliant for text adventure games, but it is deep and wide and probably beyond the cognitive development of the typical 11-year-old. In ToonTalk, every program is a 3D animation—and it teaches concurrent, distributed programming! Way cool.

Have fun!

link|flag
vote up 0 vote down

Python with PyGame. It should allows him to writing game, such like Mario, etc. Perhaps Ruby is more flexible language, but I never used it.

link|flag
vote up 1 vote down

I was glad to see someone recommend Squeak. It is Smalltalk, and is easily graspable by anyone -- anyone with a sustaining interest, that is. And it comes with games. It is the only programming language my son was exposed to at roughly the age of 11, and it kept him busy for many a happy hour while I toiled away in C++ and enjoyed myself with ruby at the office. He's not interested in programming now (which I think is a fine thing -- it's way too time consuming unless you have a real bent for it), but it was accessible at the time, and it IS Smalltalk, which we all know is foundational in much the same way as Scheme or Lisp or even Fortran.

I remember when my nephew got really interested in programming, just about that age, when he gave up model railroads for PC's. He'd be embarrassed to be reminded of this now, but he developed the idea that what he really needed was a Fortran compiler. But no one really agreed enough to get him one! Too bad, but I think now, ten years later, that when he isn't using Fortran he uses Mathematica in his daily work. Ha ha on all of US!

Today, for a game, I think a good option would be Objective C for the iPod touch. Sad to say it is not really open, but it is interactive in a way that ought not to be ignored by someone who wants to write games for the future, and the SDK is free although you do need an Intel Mac. There are aspects of interacting with the iPod/iPhone that are a bit of a chore, and if that seems to pose too much of a barrier (not to mention the $100 to get your program onto the device), then there is nothing wrong with coding Actionscript 3 for Flash to get going with games. The SDK is free and downloadable and although it does not have multitouch support in its release version (fairly essential for really nice interactive gaming), it eventually will, and AS3 is a modern enough language, having the concept of interfaces, to be able to get across some essential ideas of design patterns. And the virtual machine (the flash player) is everyone now, even Linux.

The advice to learn Ruby or Python seems unnecessary. These are both wonderful high level utility languages with loads of opportunities to pick up first class concepts of object orientation, generation of executable code, full feature libraries and first class objects themselves, but he will pick them up himself as necessary. I have found the documentation for both to be quite thorough, and the documentation for Ruby to be more useful on a day to day basis. I am thinking in particular of the pickaxe books and the fact that the libary modules and their members were rendered into a windows help file for easy searching. Google, though, have chosen Python, so what do I know?

I'm posting this as myself, rather than commenting on someone else's post, because I don't have enough cred points or whatever the points are called, in order to vote something up or down.

link|flag
vote up 1 vote down

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|flag
show 1 more comment
vote up 0 vote down

I think a good language would be c#

link|flag
vote up 0 vote down

Take a look at ruby.

Let him play with irb and start with these 3 programs:

first:

puts "hello world"

second:

puts 1+2

third:

1.upto(10) do |n|
  puts n
end
link|flag
show 1 more comment
vote up 1 vote down

I'd suggest trying out some of the tutorials at http://squeakland.org/tutorials/

Squeak is an implementation of Smalltalk with an emphasis on interactive graphical programming.

The squeakland tutorials and material has been designed to help teach maths and science to children using interactive programming... and sometimes they use games programming to motivate participants.

link|flag
vote up 0 vote down

One thing that might be very cool for an 11-year old, is iPod Touch programming. While Objective-C may seem a bit heady at first, it is not unmanageable for a young kid if you start out using some game creation frameworks like Cocos2D.

The thing that makes it compelling is that's it's something easier to take along with him to show friends what he has done.

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

How about Logo. In Coders at work the interviewer in the second chapter talked about how you wrote a game in Logo.

link|flag
vote up 0 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
1 2 next

Your Answer

Get an OpenID
or

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