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

If you want to start really REALLY basically then I would choose BASIC.

It has all the basic programming elements, easy to learn.

link|flag
vote up 32 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 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 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 1 vote down

You could try Groovy.

One could say that it's Java under a sweet coat of syntactic sugar

Groovy...

  • is an agile and dynamic language for the Java Virtual Machine
  • builds upon the strengths of Java but has additional power features inspired by languages like Python, Ruby and Smalltalk
  • makes modern programming features available to Java developers with almost-zero learning curve
  • supports Domain-Specific Languages and other compact syntax so your code becomes easy to read and maintain
  • makes writing shell and build scripts easy with its powerful processing primitives, OO abilities and an Ant DSL
  • increases developer productivity by reducing scaffolding code when developing web, GUI, database or console applications
  • simplifies testing by supporting unit testing and mocking out-of-the-box
  • seamlessly integrates with all existing Java objects and libraries
  • compiles straight to Java bytecode so you can use it anywhere you can use Java
link|flag
show 1 more comment
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 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 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 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 0 vote down

My vote would be for Python. REPL allows you to explore the language without having to worry about saving files and switching to command windows etc.

link|flag
vote up 2 vote down

There are a lot of ways to approach this question. Personally I believe it's best to start with as simple a language as possible and learn the basics of variables, operations, functions, loops, conditions, etc. No GUI, no OO, no frameworks. I think that you could do this with C, Basic, Pascal, or Perl (and others I'm sure). Heck, you could do it in bash if you just wanted to focus on the basics. I think all the other stuff should be built on a solid foundation of understanding the concepts of programming.

Another argument might be that you should drop them directly into what they might be most likely to use (which is apparently .NET from reading here =). Frameworks, GUIs, OO, getters/setters. I'm not a big fan of this because I've never been comfortable with the idea that drawing a GUI and then using three lines of code to write a web browser is really programming, yeah it's a neat technology demonstration but it teaches you how to use an IDE/framework, not how to actually think logically about the practice of coding.

You could always go the academic route, which combines the worst of both of these. Teach 'em SNOBOL =).

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

Java

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

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