vote up 44 vote down star
29

What is the language with the lowest barriers to entry, simplest syntax, easiest setup. I'm aware that there's not a best language but I am sure that there will be one that's got a good score in all three areas.

It's for teaching friends how to program, I like PHP and Python but I don't want to be narrow minded and limit myself when there is a better option out there.

Common suggestions

  1. Ruby
  2. Python
  3. Basic
  4. C
  5. Java
  6. C#


Useful links

  1. Best Ways To Teach A Beginner to Program
  2. Why's (Poignant) Guide to Ruby
  3. Think Python
flag
show 5 more comments

78 Answers

vote up 6 vote down

_why (of Ruby fame) had been working on his HacketyHack starter's kit (now defunct) - it's ruby of course, and a nice introduction to it, I guess. Haven't tried it myself, but I assume it's good for learning basic programming constructs (loops, flow, variables, etc).

Also see processing.org - it's somewhat Java-syntax based language, and it's graphics-oriented. Fun to play with, and a lot of samples to tweak, too.

link|flag
vote up 2 vote down

Squeak, a smalltalkish environment with a lot of visual objects and things to make it fun. Developed by one of my heros Alan Kay :)

http://www.squeak.org/

link|flag
vote up 2 vote down

This may recap many opinions already expressed here, I will just add some details (and lemon)

Python has (its oddities aside) a low barrier. If you are working on a unixy type OS, its dead simple to get started with as well. Furthermore, python is available on all (major) platforms. Which is also the reason I would not recommend Boo. Although Boo is a nice language, it is for advanced users. And it prerequisites either microsoft .net or mono. Either of which are not in themselves easy to get started with. If you do start off with python, do it in the python interactive interpreter (the "python shell"). Preferably in ipython (http://ipython.scipy.org). http://thehazeltree.org will provide you with some good starting points.

You could also go old school and learn LISP (or one of the derivatives, see wikipedia). It may not be the easiest of languages to learn, but if you get through the barrier you will in turn receive a language that will help you think clearer on programming problems.

I have little to no experience with ruby. So someone with more experience/better persuasive skills than me may be of more help here.

Good luck & happy hacking.

link|flag
vote up 5 vote down

I would recommend C.Can give u a nice insight into how exactly the code you write works.After C its better to take up a pure object oriented language like Java rather than C++. People learning C++ after C typically try to write structured code using objects and have trouble getting the hang of object orientation

link|flag
vote up 1 vote down

Ruby is the cleanest language I've used. But the problem is that it's command-line, and summing lists of numbers gets old fast. It's something that's appreciated by people who already know programming.

PHP is a great "run anywhere" language that teaches you the basics of Web programming. Most of the "fun stuff" is happening online and can help keep a student motivated. You can easily branch to javascript for more interactivity and learning OO/functional concepts.

link|flag
vote up 1 vote down

Many people have mentioned it, and I agree that C is your best choice. What I really would suggest though is something that is not a scripting language, so Java works just as well. I've found that for a beginning programmer the ability to "compile" (or something similar) is an amazing reward. Be careful with whatever you do though, and don't jump right into OOP right away, because that will probably just confuse the heck out of you. Finally, use Linux. It just makes programming so much easier and fun.

link|flag
vote up 3 vote down

JavaScript is a great starting point for learning the basics - you don't need an interpreter or compiler - just a decent web browser and an editor with some pretty syntax highlighting (I recommend Aptana for JS work).

Also one of the largest benefits of starting with JS is that although you might switch server side languages you'll most likely still be using JavaScript!

link|flag
vote up 1 vote down

lowest barriers to entry, simplest syntax, easiest setup

If you are really starting from the beginning use Logo to introduce basics of variables,functions, block-structure, looping and recursion. (see http://www.stager.org/logo.html for some resources)

edit: I'd also like to add Scratch, Squeak & Squeak E-Toys and Alice as real options for learning about programming starting with the basics.

Once they have that, then move onto Scheme[1], Python, Java or any other language with sufficent learning support materials. Since you are teaching then choose a language you like, what matters most is an engaged teacher - not the language.

If you like PHP then go with that, but only if they already understand HTML - I'm sure teaching two things at once is a bad idea. (of course most languages have minilanguages embedded in them - conditional expression construction for instance - so you will eventually have to deal with that - I suppose you can put it off for a while if you use Scheme[2])

[1] PLT-Scheme http://www.plt-scheme.org/ comes with a great IDE and excellent supporting materials [2] but I'd only choose it for someone starting down the path of compsci.

link|flag
vote up 1 vote down

Hrm ... its becoming more and more obsolete but I cut my professional teeth on Delphi . Its object pascal which was designed as a teaching aid. Its syntax is more verbose than a c based one so it is less frightening to read at first (for english speakers anyway). It doesn't auto garbage collect so students will have to learn about that. You don't have to use pointers but they are there. The framework (VCL) source is accessible unlike .net 2.0. The developer community is active and willing to help and they have a great free IDE.

It is best used win32 only though, the linux port Kylix never took off and the last time I tried Delphi.net it was only using .net 1.1.

I honestly think that this language should be much more poplular than it is.

link|flag
vote up 2 vote down

First of all, this depends on what you want to be in the end.
If you want to show basic programming concepts to an adolescent (or an adult who is not computer-friendly), chose any of simple educational programming languages. They are useless in real-life programming, but they are really easy to start with. I would recomment Alice in this case.
If you want to become a professional programmer, you should choose any of real-life low-level programming languages. Object-oriented/script languages are easier to start with, but they will not give basic understanding of computer architecture and you will eventually end being code monkey. C (not C++!) would be ideal option in this case. However, this language doesn't have a smooth learning curve and you may find that it is too complex for you. In this case I would recommend Pascal - it is easier to start with. But you will anyway need to learn C after this.
And don't learn Basic! Othwerwise you will need to unlearn it later...

link|flag
vote up 4 vote down

C/C++. Might not be quite the easiest but you have good development tools, a lot of documentation and source code. Besides C has a similar syntax Java, C#, PHP.

link|flag
vote up 0 vote down

I would recommend a language that has a garbage collector for a first language, to lower the barrier to entry. I would also recommend a C-like language, because they generally have more support from syntax highlighters, which will help the beginner separate out different ideas. It should also have fewer strange edge-cases.

So taking all of that into consideration I would recommend the D language. It also has the benefit of having unit-tests and contract programming built into the language.

The revised classic "Hello World" example: ( copied from here )

#!/usr/bin/dmd -run
/* sh style script syntax is supported */

/* Hello World in D
   To compile:
     dmd hello.d
   or to optimize:
     dmd -O -inline -release hello.d
*/

import std.stdio;

void main(string[] args)
{
  writefln("Hello World, Reloaded");

  // auto type inference and built-in foreach
  foreach (argc, argv; args)
  {

    // Object Oriented Programming
    auto cl = new CmdLin(argc, argv);

    // Improved typesafe printf
    writefln(cl.argnum, cl.suffix, " arg: %s", cl.argv);

    // Automatic or explicit memory management
    delete cl;
  }

  // Nested structs and classes
  struct specs
  {
    // all members automatically initialized
    int count, allocated;
  }

  // Nested functions can refer to outer
  // variables like args
  specs argspecs()
  {
    specs* s = new specs;

    // no need for '->'
    s.count = args.length;  	   // get length of array with .length
    s.allocated = typeof(args).sizeof; // built-in native type properties

    foreach (argv; args)
      s.allocated += argv.length * typeof(argv[0]).sizeof;
    return *s;
  }

  // built-in string and common string operations
  writefln("argc = %d, " ~ "allocated = %d",
  argspecs().count, argspecs().allocated);
}

class CmdLin
{
  private int _argc;
  private string _argv;

  public:
  this(int argc, string argv)   // constructor
  {
      _argc = argc;
      _argv = argv;
  }

  int argnum()
  {
      return _argc + 1;
  }

  string argv()
  {
      return _argv;
  }

  string suffix()
  {
      string suffix = "th";
    switch (_argc)
    {
        case 0:
          suffix = "st";
          break;

        case 1:
          suffix = "nd";
          break;

        case 2:
          suffix = "rd";
          break;

        default:
            break;
    }
      return suffix;
  }

}

If you do choose to go with D check out DSource.org

link|flag
vote up 2 vote down

If you are new to computer programming, start off with python. Things can't go easier than that. Also python would teach you a lot about indentation in code. Learning python would teach you to properly indent your code in whatever language you write.

Beware though that after learning python I haven't been able to get to program in any other language easily. My mind always wants to go back to python.

If you want to get into more detail, you must learn C. If python is your first programming language, then you can try writing C extensions in python for really simple functions. That would be a good start.

link|flag
vote up 2 vote down

My opinion on this is influenced by reading "Design by Numbers." I think having an interpreted language is easiest on the beginner. Issues of syntax and style aside, my opinion is that text-in text-out program bore a youth very very quickly. As has been mentioned HackityHack is a proposed solution to this. However I feel this to be true: ActionScript has a really nice amount of interactivity and feedback to it in the context of flash. Yes the IDE leaves most persons wanting, but it just draws pretty things and abstracts away a lot of other issues.

People literally throw their first language or two away; I will never write in AppleSoft Basic again, probably not Pascal either.

I'd recommend the subject start with ActionScript with a couple of rules:

  1. Everything must be in the first frame of your stage
  2. Start without defining functions, output stuff to trace()
  3. Move on to drawing stuff to the stage.
  4. Take input from mouse position.
  5. Take input from text fields.
  6. Learn to manipulate movieclips for fun and profit
  7. Play with this for days.
  8. learn to use functions.
  9. use functions to handle events like mouse clicks.
  10. do something recursive like draw a tree.

At this point I'd say you're done with ActionScript; it only gets messy from here. You'd try to move on by actually using the stage, and start sprinkling your ActionScript into multiple places... Both of these are wrong headed and eventually impossible to debug. You could do dynamic loading of CSV and XML files and then even use web services... but you should move on to JavaScript with jQuery or something that works on XHTML and CSS. As a plus, there's an ActionScript and JavaScript bridge.

Alternatively, if a 12 year old can write an excellent text adventure game in scheme, then maybe scheme is a fine next language.

Note that I would say Proce55ing has a similarly strong feedback loop for beginners, but I'm not sure it's quite as friendly.

link|flag
vote up 2 vote down

I'm going to agree with the Python crowd here. Python has a low barrier to entry and is used all over the place.

It has been compared to BASIC in this respect (which is where I got my start, incidentally), but with the footnote that it's taken more seriously than BASIC and, as such, could potentially create a revenue stream for you faster while you hone your skills (which is a lifelong process, of course).

link|flag
vote up 2 vote down

Shells!

MS has recognized the learning path from shells to other languages. I have personally done all of my exploring into .NET via powershell. For a sysadmin I highly recommend it; as with any of the *nix shells, the initial reward value is high enough to demonstrate the need to learn to program. By introducing a pipeline a level of programming is already required to do day-to-day administrative tasks and creating a simple one-liner gives immediate reward and encourages a deeper-dive.

As seen on the Powershell blog:

Developers love about PowerShell because it is both a shell and a scripting language but more because it creates a virtuous cycle with their systems programming. PowerShell is .NET based. As such, when you use PowerShell as a shell, you are actually learning the .NET object model – what the objects are, what their properties are, etc. When you run a command and format the results as a table, the columns are the .NET properties of the .net object that was emitted (modulo that fact that PowerShell sometimes extends these for greater consistency).

Well that's how it's gone for me at least :)

link|flag
vote up 1 vote down

I cut my teeth programming on Basic on a C64 and had never really had an opinion on how to learn programming until recently when helping someone learn programming with Python. I suddenly realized that you can't get much better than Python as a first language simply because it is interactive.

It had never twigged with me before, but being able to see what state the system is in after you're run each line of code really helps with the fundamental ideas. I guess the analogy would be that when you learn other things in life you're not forced to plan everything out to start with and then just have to sit back and watch what happens. When things start to go wrong you can correct and change, just like in Python.

So I'd say either Python or, if they're feeling particularly brave with a sound grounding in maths, ML.

link|flag
vote up 27 vote down

I'd recommend Delphi.

I can't tell you how many people say to me "I started programming with Turbo Pascal" --

Delphi is still has the same basic ease of use and power that Turbo Pascal did.

But I'm a bit biased, as I'm the Delphi Product Manager. ;-)

Nick

link|flag
1  
I grew up on Delphi and still like the idea of coming back to it one day... For now I am stuck in the Java World :( – MasterPeter Apr 9 at 22:17
vote up 1 vote down

C was the "right" starting point for me, after failing to grasp BASIC and VB effectively. Don't let the C's reputation for being "hard" deter you from using C to teach programming. It's hard to get big programs done quickly/easily in C as it lacks many features of the higher level languages, but it's limited set of functionality makes it well suited to learning to program. Learning the machine is a very nice added bonus.

I strongly recommend against teaching GUI programming before teaching command line programming first. I/O in command line environment is very easy and doesn't distract the beginning programmer from learning the fundamentals of programming. It also serves as a good basis for understanding web programming later.

link|flag
vote up 1 vote down

Hai! Why no mention of LOLCODE? KTHX, BAI.

link|flag
vote up 7 vote down

The best language is {insert-your-favorite-language-here} :)

My advice is to learn a language that someone you know + like knows, so you at least have a mentor.

If you're doing web development, there are dozens of languages/frameworks that you could choose and ultimately be successful using.

link|flag
vote up 1 vote down

for python check out Dive into Python. It's available for free download on the site, and it's available in a bunch of languages too.

I've found it very useful so far.

link|flag
vote up 2 vote down

lowest barriers to entry, simplest syntax, easiest setup?

Hypertalk. I had learned Basic, assembly and some Pascal when I was exposed to it, and I was stunned by its sensibility. I'm not sure about compatability, but it probably runs in Classic mode on any pre-Intel Mac.

Logo. I never used it much, but if I was teaching someone young, I would start with it.

Or maybe a macro language / formula system in a spreadsheet or word processing application.

In my experience as a QA tester, the biggest problems programmers have is that they failed to learn the "what" of the program, not the "how". Anything that teaches someone to take a concept and express it precisely, verbally, is a good start.

(heck...)I guess music theory is probably another good starting point.

link|flag
vote up 4 vote down

OK, I guess my suggestion is going to sound weird to lots of you, but it would be a functional language like Caml.

Caml was the language I started with (at school), and I thought it had quite a few nice features (some are shared with other suggestions from other answers):

  • has an interactive (interpreted) mode, which is really nice for a beginner;
  • you don't have to handle anything memory-related (pointers,...);
  • code is usually quite concise (compared with C, C++, Java,...);
  • it's very easy to create/manipulate complicated data structures (you usually encounter trees, lists, graphs,... very early on), so it's great to learn about algorithms at the same time!;
  • if you get serious about programming, you will anyways (surely!) learn a procedural language later on, so beginning with a functional one, at least you'll have been exposed to one;
  • you can program in imperative (and even OO) style with Caml;
  • IO is easier that with some 'purer' functional languages, like Haskell for example, that use monads (which are not the easiest thing to understand for beginners!).

This worked really fine for me (though I did come from a maths background). If the goal is to be 'as close to the hardware as possible', then I'd follow Joel and say C.

link|flag
vote up 1 vote down

Personally, I think ANYTHING will be fine. Let's face it: Programming is not something you can pick up in five minutes and start throw out good code. The only way to do that is to have a huge huge library and a good search program, period. If you are to learn programming, you will have to face difficulty, so an easy language will turn out to be a hard one.

With that said, I also think that C#, actually, anything with Visual Studio should be kept away from beginner. No, not only Visual Studio, but anything with a good IDE and interface designer and you can create a program after a number of clicks. Yes, I grew out of Turbo Pascal (into Borland Pascal, how's that :D). However, Pascal had no design manager, nor did I have the luxury of avoiding the main program. Look at what MS does to programmers: it reduces the art of programming, an difficult and abstract art, into concrete clicks. I cannot describe to you the shock I receive when I switch out of Visual Studio. Within it, I did not programming per se, but rather using VS to create some .exe file that run and satisfy my ego.

Hence, a good programming language for beginner is NotePad (actually, NotePad++ or Emacs or vi would be better) and a compiler. Alternatively, a command line interpreter. That's it. Any language will be fine. Most popular programming languages become popular for a reason: they are usable (except Money-Oriented-Languages, even those are nice enough). By the way, as little internet as possible (so if you use Java/C#/VB.NET, you cannot search for a particular class. You must implement your own with what your tutorial or book gives you).

That is, I believe, the best start. Remember, "Real Programmers don't use Pascal."

link|flag
vote up 1 vote down

Of course, there is also an unanswered question of which would be the worst language to learn...

link|flag
vote up 3 vote down

Like mentioned by epatel, Squeak Smalltalk is a really cool language to start with.

  • Smalltalk has a very simple syntax, designed to be understood by children
  • Squeak has a very easy setup: download it and run it.
  • Select some code anywhere in Squeak, and do it (executes the code) or print it (executes the code and prints the result)! It's a great way to explore programming.

It has two small problems though.

First, to start coding you must familiarize with:

  • the Object Browser = where you browse and define new classes
  • the Workspace = where you can type and run snippets of code.
  • the Transcript = where you can print some text output.

But there is a very responsive and experimentend Squeak beginners mailing list, that can help you start.

Then, if in a later stage you want to do native GUI, you have to use wxSqueak.

Another advantage is that most Smalltalk implementations, including Squeak, are also excellent intermediate / advanced programmers IDEs, including automated refactorings, integrated unit testing, a mature Collection framework, and... on the fly inspect / debug / modify the whole system while it is running!

Hope this helps. Cheers!

link|flag
vote up 0 vote down

I think absolute beginners would like to write programs which look like "real" programs as soon as possible. It doesn't really matter if the program doesn't really do that much if it looks good. So Visual Basic.Net Express edition (free) would be my suggestion. Otherwise someone trying to learn programming might be discouraged by the difficulty of creating good looking programs and might stop trying to learn... I don't think it really matters too much which language one starts with. After one language learning another one is much easier.

That Dijkstra quote mentioned above is from 1975, Basic has evolved quite a bit since then. He also said

Object-oriented programming is an exceptionally bad idea which could only have originated in California.

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

It depends on what type of programming.

Web-based? Desktop apps? Multi-processing? Each will have a different answer.

I think to be a good programmer, you should learn C, a scripting language (pick one from perl, ruby, php, etc), and one "non-traditional" language like lisp, APL, etc. If you can get comfortable in C, perl, and lisp, you can pick up pretty much any other language, and more importantly you'll have enough of a background to (hopefully) be able to pick the right tool for the job at hand.

link|flag
vote up 1 vote down

It doesn't matter too much which language you start with, as long as it's Ruby. :-)

No, seriously, there are a number of good languages to start with (and as many bad ones); at least as important as which language, though, is which tutorial or book to use. I wrote a tutorial that... well, honestly it sucked at first (as most do). But I got lots of great feedback and tried my darndest to fix the parts people got stuck on, and several years later it actually got pretty good (if you don't mind my saying so... and if you do, well other people say so, too, so there). Check out the tutorial if you want, or the even more complete/up-to-date book version.

And yes, it uses Ruby.

link|flag

Your Answer

Get an OpenID
or

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