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

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

TCL -- simplest bar none

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

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

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

I started with Modula 2!

  • Non-intimidating syntax (none of {this stuff})
  • Strongly typed
  • OO
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 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

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

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

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

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

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

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 recommend a language with some outdated features. For example line numbers. Or semicolons. :)

link|flag
prev 1 2 3

Your Answer

Get an OpenID
or

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