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

I recommend a language with some outdated features. For example line numbers. Or semicolons. :)

link|flag
vote up 0 vote down

I think you want a language with a good IDE, so I vote for C# in VS2008.

link|flag
vote up 0 vote down

I'll second the suggestion above to learn Processing. It is easy to get up and running doing interesting things with graphics and animation, has lots of examples readily at hand, and when you're ready to move on, it can lead you right into programming with Java. If you're interested, flip through a copy of Ben Fry's book "Visualizing Data".

link|flag
vote up 0 vote down

You should first learn basics of C. Because it is a programming language you'll see on most of the colleges around the world as a first step. Most of low-level programmes is written in C. Most academic institutions have some classes about C as first step.
After learning basics of C you should as fast as you can go to Java or C#. Because syntax is very similar so you can switch between them fast. I would go to them because they are fully object oriented. C++ is the grandpa of both of them but you'll probably spend hours finding some stupid mistakes that you made and that are allowed to do but it's not actually what you wanted. I would avoid Visual Basic, no refactoring, unit testing... and that are things that help you a lot. I don't know about Python.

link|flag
vote up 0 vote down

To me, language syntax itself may not be the largest problem.

I'd say a language is easy to learn base on the following:

  1. Community, friendly forum & complete documentation
  2. A nice IDE what have the "LIVE STEP BY STEP DEBUGGING" feature, that I can show and watch that happening behind the code.
link|flag
vote up 0 vote down

A similar discussion in StackOverflow: http://stackoverflow.com/questions/419959/language-for-non-programmers-to-start-learning-programming

link|flag
vote up 0 vote down

My wife is a (web) designer. She doesn't need to know more about programming than make some basic Javascript/Actionscript controls.

Well, I started teaching her about Javascript. All we need is a text editor (highlight preferred) and a web browser and I got amazed with her progress.

I started talking about constants, variables, conditionals, loops and functions. Now she is going further with JQuery and Flash/Actionscript components.

So, depending on the needs of the person you are going to teach, Javascript may be a great start point.

Regards

link|flag
vote up 0 vote down

I put it a bit different. It depens on what you especially want to learn. 1) let's say it's object oriented programmming. Then I suggest a "pure" OO language. that excludes C, D, Ocaml, Common Lisp, Fortran, Cobol, but includes languages like Ruby, Smalltalk, Self, Beta, Io

2) let's say it's to understand how machines work. Than the first choice is Assembler, probably C, C++ or D next

3) let us assume you are looking for languages with largest set of libraries. Then C#, the .NET languages, Java, and maybe Smalltalk would be a good idea

4) if you like to learn functional programming. You have to choose languages like Haskell, Ocaml, ML, Qi, maybe Scheme

5) if you like "practical languages" then you might like to check out Common Lisp, Scheme, the diverse .NET languages Ocaml

6) if you want speed than you probablly want to learn Assembler, C, C++, or OCAML

7) if you like languages which cover more "approaches" then you like to learn Scheme, Common Lisp, Ocaml, Mozart/Oz

8) if you want to formulate your goals and let the machine find it's way to it then you like to learn Prolog

9) if you like concise languages than Forth, and derivates will come in handy.

10) if you like to do much text manipulation you like to learn something like Perl, Tcl/Tk, Ruby, Python the so called scripting languages mainly

11) if you like to have your language on as many OSes as possible then, C, Smalltalk, Java and many scripting languages

12) if you want good tools support than the .NET langauges, Java, Smalltalk and the IDES of some Commmon Lisps will be good choices

So the answer is: "It depends"

link|flag
vote up 0 vote down

Lua. Installation is a dream. There is an excellent book available free online. The language syntax was designed for non-programmers. It is the simplest of all the scripting languages, so you can master and understand the whole thing. It has powerful data structures. It has an interactive loop. Its string processing is a brilliant piece of engineering: almost as powerful as regular expressions, and one hell of a lot simpler. It is very stable over time and is expected to remain so.

As a bonus, Lua can be a 'gateway language' to C or to Scheme. And Lua has the smallest, fastest implementation of all the scripting languages. These guys are great engineers.

link|flag
vote up 0 vote down

I started with Modula 2!

  • Non-intimidating syntax (none of {this stuff})
  • Strongly typed
  • OO
link|flag
vote up 2 vote down

Depends on what you want to do; if you want do something in language X, learn language X. If you just want to learn how to program in general, either Python or Scheme will do very nicely. Python is more practical, but Scheme will teach you more basics.

link|flag
vote up 1 vote down

No-one's mentioned Lua, yet.

  • small language, reading 20 first pages of the manual is enough to get you going
  • fits all in your brain at once
  • has a nice way to "deep dive" into ANSI C if one so wishes

If running on Windows, check Lua for Windows. It has also some neat add-on modules built in.

link|flag
vote up 1 vote down

I learn with VB5 and VB6. I think it was a good start because application was very easy to build and to have a result. In the same time I learn component, basic looping and other basic thing that other language like C or C++ would have been taking more time and maybe have discouraged me.

But in 2008, I would suggest VB.NET or C#.Net because they have a clean IDE that is easy to understand too for young new beginner. You press play and it works!

link|flag
vote up 2 vote down

I actually think that the best beginners language you can teach is Visual Basic. The good thing about this language is that you can actually start creating a user interface the very second you begin. Opposed to other languages like C, C++, Java which makes a bit difficult to create friendly user interfaces.

link|flag
vote up 1 vote down

I am not a good programmer by far (at least not yet). I did Turbo Pascal & BASIC in HS, some PHP, ASP, JS, and Java back about 8 years ago. Just recently started getting back into programming for personal development and what not. I decided to try out C# and VS 2008 Express. On top of that I picked up the O'Reilly Head First Labs C# book and have really been enjoying the learning experience.

My limited experience with C# is that it's easy, fast (at least what I'm doing), and great tutorial resources available.

I might pick up Ruby to do some fun web stuff though. Not sure yet.

HTH.

~Allen

link|flag
vote up 2 vote down

+1 for Smalltalk.

Simple syntax, clean & obvious behavior, everything is an object, every action is a message sent.

link|flag
vote up 1 vote down

TCL -- simplest bar none

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

Don't forget Perl. These days Python has taken over, but Perl is still a very valuable tool.

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

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

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

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

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.