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

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

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

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

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

Java

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

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

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

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

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

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

TCL -- simplest bar none

link|flag
show 1 more comment

Your Answer

Get an OpenID
or

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