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

1 2 3 next
vote up 96 vote down check

In Eric S. Raymond's quite amusing text How To Become A Hacker, he writes

If you don't know any computer languages, I recommend starting with Python. It is cleanly designed, well documented, and relatively kind to beginners. Despite being a good first language, it is not just a toy; it is very powerful and flexible and well suited for large projects. I have written a more detailed evaluation of Python. Good tutorials are available at the Python web site.

I used to recommend Java as a good language to learn early, but this critique has changed my mind (search for “The Pitfalls of Java as a First Programming Language” within it). A hacker cannot, as they devastatingly put it “approach problem-solving like a plumber in a hardware store”; you have to know what the components actually do. Now I think it is probably best to learn C and Lisp first, then Java.

So in short; Python is a good first language, but you should eventually learn C to learn low-level stuff. If your question was targeted for an adolescent, then Alice would be a nice suggestion.

link|flag
2  
I found the tutorials here: docs.python.org/tutorial – JoshFinnie Nov 25 '08 at 18:01
show 2 more comments
vote up 42 vote down

I'd vote for Ruby.

You should read Why's (Poignant) Guide to Ruby to see what i mean :)

link|flag
show 3 more comments
vote up 31 vote down

I recommend C. Even though it may be slightly harder to start with than BASIC, it has much more real world application. If you know C, you can learn Java, C++, C#, etc very easily. Also, many things you learn in C will be the same in other languages, unlike the many different versions of BASIC.

link|flag
3  
C ideal for beginners? Sorry, not buying it. Strings as arrays (plus end-marker)? Arrays as pointers? Pointers?!?! Need to call functions for basic string operations? Too steep a road for a beginner! – Joe Pineda Dec 1 '08 at 19:39
show 4 more comments
vote up 30 vote down

Javascript is 100% the easiest language to start with. I know it's not anyone's favorite language, but let's face it. It's the most bang for your buck the quickest. Sure it's not "cool", sure it's not a "good" language, but in what other language do you not have to install a single thing, or have anything special on your computer? Every operating system has a browser and a plain text editor, and you can have someone in their first "hello world" program in less than a minute without installing or configuring a darn thing.

link|flag
3  
@Richard: if you believe javascript has no OO, then you know nothing about it and shouldn't disregard it so cavalierly! Besides, strong typing isn't that great... – Joe Pineda Dec 1 '08 at 18:54
1  
Though I love JavaScript, i wouldn't recommend it as a beginner's language: unless you're using server-side JS (or restrict yourself to a single browser) implementation incompatibilities plain suck. Appart that, it's a beautiful and powerful language! – Joe Pineda Dec 1 '08 at 19:31
1  
Javascript is more of a punishment or a form of torture than a language. – cletus Jan 31 at 6:20
1  
Couldn't agree more with cletus. The language itself isn't a problem, but compatibility is a nightmare. If you are building an in-house application where you know it only has to run on IE or Firefox then it's great, otherwise, stay away. – BacMan Feb 17 at 4:32
1  
Javascript is not a good first language in my opinion. I do love javascript though – Ronnie Overby May 1 at 13:02
show 7 more comments
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 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

Start with C or C++

No, really, I'm serious. If you learn one of those, you can pick up anything from there.

link|flag
show 5 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
vote up 15 vote down

There are probably more obscure languages out there with easier syntax, but I think C# has very low barriers to entry.

The Visual Studio Express editions are free and easy to set up, and C# is definitely more beginner friendly than some other C-style languages. It's also very popular and well documented (including several interesting startup kits/demo projects), so there will be plenty of support out there for when they get stuck.

It's also easy to build desktop and web-based apps, which may be considered an advantage over PHP depending on their areas of interest.

link|flag
show 2 more comments
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 8 vote down

The question I would ask someone who wants to learn a programming language is what do they want to do with it?

We have scientists at work who use Access and Excel a lot, so they are learning Visual Basic for Applications because it helps them do their work. Entry and setup are trivial (as long as you have laid out the $$$ for Microsoft Office), and the syntax is pretty easy once you get the hang of it.

We have other scientists who want to learn how to manage data and interact with "real" databases, so I have recommended that they learn Perl (and I am following up that recommendation in September by teaching a Perl course). Entry and setup are again trivial and platform independent. It is easy to get Perl for Windows from activestate.com; Perl is usually already installed on Linux and Unix systems; and Perl is already installed on Mac OS X systems. The Perl syntax is easy to learn, and the Learning Perl book published by O'Reilly is an excellent guide for getting started.

If the person wants to do software development for a GUI with windows and controls, then that person has to decide if they want to write platform-independent software (Java) or platform-dependent software (.NET languages for Windows, Objective-C for Mac OS X).

link|flag
show 1 more comment
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 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 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 5 vote down

Since Randy Pausch just recently passed away it would be sad if this question went without the suggestion of Alice as a the teaching language for friends and family to start with.

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

Something with a nice REPL would be a plus, as a REPL provides learners with a very nice immediate feedback loop. Many languages (e.g. Python, Ruby, Lisp, OCaml, Erlang) come with REPLs in their standard distributions; others have add-ons or third party REPLs (e.g. PHP, Java).

link|flag
vote up 3 vote down

I just began to learn python a few days ago and am really liking it. The reason I started learning it was because I came a cross a free book called 'Think Python' which was originally made with an emphasis more on teaching program rather then the language.

I like learning from books that teach programming because I believe it always gives a unique perspective based on the language's style.

link|flag
vote up 3 vote down

I would say javascript, very low in each of those areas. Could also have the person use ruby in your browser and you have ruby ready for tinkering instantaneously.

Not sure why this got a -1, both recommendations fit into what he was asking. I am not trying to say he is going to teach a person amazing programming principles with javascript, but to get someone's feet wet with some of the simple crap, all they need is notepad and IE and they can send out what they did to anyone to see. Oh well, I guess you say the word javascript and people come hating.

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

I'd cast a vote for Ruby as well. I cut my teeth on Perl and it was very easy to write small amounts of code to make things happen and try out new ideas. If your friend is learning about methods, it's only a few lines to write out a proof of concept. Ruby has that convenience and much better OO syntax.

Plus, there's a nice immediacy and simplicity with just be able changing some syntax and running the interpreter. You don't need an IDE (although the MS Express editions are really good if you are learning C#, etc.), just a command line and a text editor.

link|flag
vote up 2 vote down

Boo. It's an open source .NET programming language influenced by Python. The syntax is quite easy to read and the structure is fairly intuitive. If after a while you wanted to try something else you could easily slip into C# or VB.NET whilst recycling all of the knowledge and power you gain from using the .NET Framework (although you are likely to miss a few things). Or if you're so inclined you could skip over to F# (for some functional stuff), IronRuby or IronPython (for Dynamicsim) all with roughly the same benefits.

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

Python is a good place to start for the basic concepts of an imperative language. For solid grounding for a career, of course C and some reasonable assembler is good (to get a feel for how machines really work), and perhaps some kind of powerful functional language (scheme is popular in teaching) - you can go through the SICP lectures online and learn scheme in that way, its great fun.

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 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 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
1 2 3 next

Your Answer

Get an OpenID
or

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