vote up 4 vote down star

Duplicate:

What is the easiest language to start with?


My son is starting to show interest in programming. I've been struggling with what language should I use to introduce him to programming? Is there a notion of one language being simpler than other?


Recommend that answerers:

  1. Go to the original question and add your answer there.
flag

67% accept rate
Make sure he doesn't spend all the time in front of the computer and also develops social skills. :) – Till Sep 23 '08 at 18:04
Justin Standard: That is not at all the same question. The best language for teaching kids to program might not be the same language for teaching adults. – Rasmus Faber Sep 23 '08 at 18:13
From this question: "Is there a notion of one language being simpler than other?". Sounds a lot like "Lowest barriers to entry, simplest syntax, easiest setup" to me. – Justin Standard Sep 23 '08 at 18:17
OVERZEALOUS MODERATION Lonely - give him an old PC, let him mess around with it and break it and fix it and install a children's programming program. OR VB - VB has enough drag and drop wysiwyg stuff to keep him interested and also enough actual code to help him learn. – Sara Chipps Sep 23 '08 at 18:22
Trying to eliminate duplicate posts is not overzealous moderation. BTW thanks for the tip Juan Manuel, hadn't seen that. – Justin Standard Sep 23 '08 at 18:23

closed as exact duplicate by Justin Standard Sep 23 '08 at 18:08

20 Answers

vote up 5 vote down check

How old is your son? What are his interests? What kind of interest has he shown in programming? Based on that, you can start looking at languages and environments. Windows XNA or DarkBasic for games. Ruby or Python for scripting and websites. C# or VB.NET for Windows programming. LEGO Mindstorms for robotics. And so on.

Some languages are simpler than others, but it's a matter of opinion. For example, I might think Erlang is really complicated and JavaScript is simple, but someone else would certainly disagree, perhaps with either assessment or both.

If I had a son and I were teaching him programming, I would teach him what I know because I could offer him the most help. I don't know if that's the "simplest" programming language for learning, but I know it would make me a better teacher.

link|flag
vote up 4 vote down

BASIC has "Beginner" right in the name!

Pascal was also designed with learning/first language in mind.

link|flag
I second that. Basic is easy enough. It either keeps people interested and they seen "lust" for more, or they get annoyed and leave. ;) – Till Sep 23 '08 at 18:03
vote up 3 vote down

You might want to try Logo if he is very young. The concept of moving the turtle around with commands is very intuitive.

If he is a little older, I would suggest Python.

link|flag
vote up 3 vote down

I'd think that if you show him Pascal he would undestard it very fast and is a good intro to programmig. Or maybe another simpler lenguage is Python, your son will see the results inmediatly (with the Python interpreter) and with training he will do great things.

link|flag
vote up 2 vote down

This doesn't answer your question, but take a look at Best way to teach a beginner to program

link|flag
vote up 2 vote down

Python is nice, I would say, although I myself started with BASIC. QBasic, to be exact, came for free with MS-DOS.

link|flag
vote up 2 vote down

I strongly recommend Python. In Germany/Austria/Swiss there is a very common book for children/teens for Python called "Python für Kids". Unfortunately there is no English translation but everyone I gave to book so far was really happy with it.

link|flag
vote up 2 vote down

See also the question "programming for a 9 year old".

My son has enjoyed the robot games recommended in that question. They provide a great way to get his feet wet in a highly graphical and fun environment. Though personally I thought they were a bit too picky about syntax for an absolute beginner.

link|flag
vote up 1 vote down

I first learned to program with an online course in C over the summer after second grade.

To the day, I'm still not decided on whether it was a godsend, putting me in the programming mindset over half a decade before my first programming class... or whether I really didn't learn much, considering that the next thing I programmed in was TI-Basic, where I learned to use GOTOs in place of function calls because I didn't realize you actually could do functions in TI-Basic.

link|flag
I was in the same boat, strated in grade 2, not a course though, my brother started teaching me basic, and i htink it was a good thing. The younger you are when you learn something the better success you can have later (as long as its not overly forced on a child, that can be bad) – mattlant Sep 23 '08 at 18:07
vote up 1 vote down

Lots of high schools and universities are teaching Java as an introductory programming language. Here is a great pre-packaged curriculum.

The BlueJ integrated development environment is specially-made for learning Java.

link|flag
vote up 1 vote down

Pick a language where the syntax is as invisible as possible, like Python. The most important thing to learn when beginning programming is how to break problems down into small steps, not where to put braces. As a bonus, Python is a fully-featured language that he can use for pretty much anything later on, be it games or Web scripting or GUI apps; a lot of languages designed specifically for learning have limits that will force him to jump ship.

link|flag
vote up 1 vote down

I'd say there are certainly languages that are easier than others. There's a lot of things to learn and it can be overwhelming for someone new to programming just trying to get something interesting working. Initially concepts such as indirection are difficult for many people to understand, so languages that expose those concepts early can be more difficult (I'm looking at you C). I'm sure your son would also like to be able to see things happen, so a language that has reasonably good graphical output can be helpful.

BASIC has many of the attributes that are desirable for a beginning programmer, so I'd start there. Many programmers I know did some work with BASIC early on. I recommend trying this version:

http://www.blitzbasic.com/

link|flag
vote up 1 vote down

Scratch is an MIT project for teaching young kids to program. I believe it is based on Smalltalk. Squeak is kind of a next step up.

It really depends on what the age range is - both of the above are very visually oriented. If you're trying to teach programming via a traditional programming language, then something like Dr Scheme might be viable, or Python depending on your environment, the age of the student and what you're already familiar with. If there is something your'e familiar with, that may be the best answer - you being able to make the subject interesting and being there to encourage and provide guidance and assistance is probably more important than any particular language's features.

link|flag
My 9yo daughter just started using Scratch, and she is having a great time with it! It's mostly graphical, focusing on manipulating multi-media. It seems to end up generating Java. There is a capability integrated into the IDE to upload projects to the Scratch web site, where they run as Java applets and can be shared (or re-mixed) by other community members. – shadit yesterday
vote up 1 vote down

I recommend Python. It is a wonderful language and its IDE/editor provides instant feedback. Circa 2000, there was a plan to integrate it into school programs (I believe in the US). I recall Guido von Rossum talking about it, but I don't know what happened to that initiative.

Python can be very simple but scales up to a wide variety of advanced concepts from OO to functional programming.

The primary issue would be good books at that level. Sadly, I can't offer much there as I have no idea.

link|flag
vote up 1 vote down

I also recommend Python. In addition to its easy-to-understand syntax and interactive command line, there is also a great book available that teaches basic programming and Python at the same time. The Pyglet game programming library is also very easy to learn if he wants to program games.

link|flag
vote up 1 vote down

This is a highly subjective question, but I'll give my recommendations:

  • Pick something dynamically typed, or at least with type inference. Static typing is great, but it's not the first thing you need to know.

  • What you do need to know is the basics of program flow and control: if, else, while, for, and the like.

  • A scripting language lets him write a few lines in a file and run it without learning about objects first or compilation. All that is important to learn, but you've got to get the spark of excitement first.

Here's my language recommendations:

  • Ruby. It's fun; it's easy; there's a giant community, and even a book on learning to program for the first time using it.

  • Scheme. I know, it's arcane. DrScheme is well-done, though, with good documentation, and built-in graphics.

  • Groovy. I think you'll have a harder time here with good resources for learning, but it's a fun language that he can still use when you teach him about static typing and compilation in Java.

link|flag
vote up 1 vote down

Introduce him C/C++.. best thing you'll ever do. Later he can learn .net languages or whatever, but anything after C/C++ will be simple to him.

link|flag
vote up 1 vote down

There's definitely a notion of "simpler" versus "harder" languages, there's just very little consensus on which languages are which...

Most of the old-school nerds I know started off with either Basic or Pascal, neither of which is held in high regard in teaching circles these days, for some reason. Depending on how old your son is, and how keenly interested he is, there are anumber of options.

I think that programming environments specifically aimed at kids (like Squeak) might not be the best choice, because they're a bit dumbed down (at least in approach).

One thing that motivates a lot of kids is playing (and creating) games. That was a big part of how I got into programming in the beginning. My first "real programs" were simple, command-line games, and I eventually transitioned to graphics and sound.

Along those lines, it might be a worthwhile thing to look into the "modding" communities for some game that he already likes to play. A lot of today's video games are designed for easy extensibility in a simple language like Lua, or Python.

Alternately, if you want him to start "from the ground up", something like Python might be a good choice. It's relatively simple and clean, and modules like PyGame can make it pretty easy to transition from command-line stuff to rich media.

Last suggestion - BASIC, specifically Visual Basic (VB6, not the .NET version). Not the most glamorous language around, but it's great for cranking something out in the form designer, slapping code in a bunch of places, and going to town...

link|flag
vote up 1 vote down

I'd say pick up the Lego Mindstorm kit. Maybe XNA if he is into video games.

link|flag
vote up 0 vote down

Perl was my first programming language, and I found it a great language to learn on. It was easy to start taking baby steps in, didn't force a particular paradigm on me, and gave me a huge playground to experiment with.

I'm still learning Perl, and still loving Perl. That said, I've recently been picking up Scheme, and I keep finding myself half wishing it were my first language. I didn't have any kind of background in computer science when I started programming, and it was really hard for me to grok recursion at first. Alas, had I read "The Little Schemer" early in my career.

-- Douglas Hunter

link|flag

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