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 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 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

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 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 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

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

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 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 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 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 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 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 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

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 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 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 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 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 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 1 vote down

Processing. You'll be able to see results even after learning very little, and develop intuition for what things do visually.

link|flag
vote up 2 vote down

I'd suggest Microsoft's XNA with C# because from my point of view it's really important to keep motivation high in the beginning stage. Download XNA, install it, play around with some of the examples, make things move, change colors and graphics, add to it, ...

Every little change gives visual feedback: You can grasp what you have changed -> really helps learning.

link|flag
vote up 10 vote down

The easiest language to start with would probably be Python.

The best language(s) might be C, Smalltalk, and Lisp. All at once, or at least within a year of each other. I started with Java and I hate using lower level languages. Much better to start with static typing, pointers, etc. and then move up. On the other hand, it's difficult to accept new concepts like OO, closures, unit tests (yes, I'll count those as language features) etc. after several years of thinking procedurally.

link|flag
vote up 7 vote down

Personally, I'd say your choice boils down to either .NET or PHP.

Whether you use VB or C#, .NET is the easiest option to get you started. The Express editions of Visual Studio are all free and very easy to install, and there are also some great quick starts and tutorials out there. It has its advanced (read: difficult) bits, but generally the easy stuff is very easy. You can do web development, Windows development, web services and mobile development with it, and the IDE and visual designers are second to none. There are other .NET languages out there such as IronPython, Boo, etc., but they require additional downloads and don't have quite as much support in the IDE.

PHP is also very easy to set up and get up and running, and its learning curve is probably a bit gentler than .NET, but it's seldom used for anything other than web development. You can download and install XAMPP to get Apache, MySQL and PHP installed on a Windows machine all in one. There are also plenty of tutorials and it's very well documented. However, you need to get hold of a separate IDE -- I generally use Eclipse with either Aptana or PHPEclipse, though it's harder to find your way round these environments than Visual Studio. PHP is also ubiquitous with web hosts.

Python and Ruby are easy to learn and use for general scripting, but they require a bit more leg-work if you want to use them for web development. Python's documentation is fair though less user friendly than either PHP or .NET. Ruby is a great language, but its Achilles heel is its documentation, which is just plain awful.

Java is a bit more tricky to get up and running, mainly because there are loads and loads of different options to consider, you need several different downloads, it confronts you with a bewildering amount of jargon, and IMO it over-emphasises object-oriented techniques and XML, which beginners often find difficult to understand and/or cumbersome to use. Having said that, it's fairly well documented, well supported with tools, and frequently it's the first language that you get taught in a computer science degree.

Don't go for Perl as a first language -- both the language itself and its documentation look like transmission line noise.

link|flag
vote up 2 vote down

Start with C or C++. As an earlier poster said, if you get your head around the way they work you can pick up anything. Remember to teach people to program, not how to write software in a particular language.

link|flag
vote up 4 vote down

C

At 274 pages, with a breezy style, K&R is the perfect starting point. Compile tools are easy to come by.

Then learn Ruby.

link|flag
vote up 2 vote down

I'd recommend anything of the following - in any order:

  • C
  • C#
  • Java
  • Python

Get yourself a good book (you really have to ask/search a lot for good books) and then sit down and try the language all day&night.

It's not too important which language you pick first, but in which detail you approach it. After you read the book (or maybe more than one), try to do everything you can imaging. And try as long as it is working.

link|flag
vote up 0 vote down

The easiest language to learn that is available on most computers is VBScript (Windows only). Notepad is all you need. You can download the help here: Windows Script 5.6 Documentation

Quickie Example:

  1. Create a file in Notepad called HelloWorld.vbs and enter the following line:

    MsgBox "Hello World"

  2. Save it.

  3. Run it from windows explorer by double-clicking on it. It's hard to get much simpler.

Where you go from there is based on the person's desire. The skills learned in VBScript will help transition to Macro writing in Microsoft Office. Once a person has their feet wet, what they need to learn is based on what they want to accomplish.

Microsoft makes available several excellent development tools with the Visual Studio 2008 Express Editions.

For the non Microsoft crowd there is an excellent IDE for several languages called Eclipse. Just as amazing as Visual Studio and free. What language you use in it is really dependent on what you want to do.

Getting your feet wet with VBScript on a windows box is not going to hurt your future programming skills.

realbasic.com has an excellent and free basic development environment for Linux users.

link|flag
vote up 1 vote down

My Vote would go for python as well - and with IronPython you get all the goodness of .net :)

link|flag
vote up 22 vote down

I think Python's your best bet. It's the language we start with in the computer science courses where I teach. Python has a number of advantages, particularly for the beginner programmer:

  • print("Hello World") # updated for Python 3
  • Very simple syntax without excess punctuation.
  • An intuitive concept of variables as names rather than representations of memory storage locations.
  • Extremely easy file access (esp. when compared to Java).
  • Straightforward built-in list and dictionary types that work the way you'd expect.
  • Transitions into an object-oriented and/or functional language as soon as the student is ready.

Sure, it doesn't have pointers like C, and closures are slightly more wordy than in Ruby, but unless you're going on to a CS degree, these topics aren't very interesting anyway.

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

To those recommending BASIC, and variants thereof:

Edsger W. Dijkstra wrote:

It is practically impossible to teach good programming to students that have had a prior exposure to BASIC: as potential programmers they are mentally mutilated beyond hope of regeneration.

It's a bit of an exaggeration. I started with Visual Basic myself, but that knowledge is largely useless now.

As for my recommendation... Scheme.

link|flag
show 7 more comments

Your Answer

Get an OpenID
or

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