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

lowest barriers to entry, simplest syntax, easiest setup

If you are really starting from the beginning use Logo to introduce basics of variables,functions, block-structure, looping and recursion. (see http://www.stager.org/logo.html for some resources)

edit: I'd also like to add Scratch, Squeak & Squeak E-Toys and Alice as real options for learning about programming starting with the basics.

Once they have that, then move onto Scheme[1], Python, Java or any other language with sufficent learning support materials. Since you are teaching then choose a language you like, what matters most is an engaged teacher - not the language.

If you like PHP then go with that, but only if they already understand HTML - I'm sure teaching two things at once is a bad idea. (of course most languages have minilanguages embedded in them - conditional expression construction for instance - so you will eventually have to deal with that - I suppose you can put it off for a while if you use Scheme[2])

[1] PLT-Scheme http://www.plt-scheme.org/ comes with a great IDE and excellent supporting materials [2] but I'd only choose it for someone starting down the path of compsci.

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

I would recommend a language that has a garbage collector for a first language, to lower the barrier to entry. I would also recommend a C-like language, because they generally have more support from syntax highlighters, which will help the beginner separate out different ideas. It should also have fewer strange edge-cases.

So taking all of that into consideration I would recommend the D language. It also has the benefit of having unit-tests and contract programming built into the language.

The revised classic "Hello World" example: ( copied from here )

#!/usr/bin/dmd -run
/* sh style script syntax is supported */

/* Hello World in D
   To compile:
     dmd hello.d
   or to optimize:
     dmd -O -inline -release hello.d
*/

import std.stdio;

void main(string[] args)
{
  writefln("Hello World, Reloaded");

  // auto type inference and built-in foreach
  foreach (argc, argv; args)
  {

    // Object Oriented Programming
    auto cl = new CmdLin(argc, argv);

    // Improved typesafe printf
    writefln(cl.argnum, cl.suffix, " arg: %s", cl.argv);

    // Automatic or explicit memory management
    delete cl;
  }

  // Nested structs and classes
  struct specs
  {
    // all members automatically initialized
    int count, allocated;
  }

  // Nested functions can refer to outer
  // variables like args
  specs argspecs()
  {
    specs* s = new specs;

    // no need for '->'
    s.count = args.length;  	   // get length of array with .length
    s.allocated = typeof(args).sizeof; // built-in native type properties

    foreach (argv; args)
      s.allocated += argv.length * typeof(argv[0]).sizeof;
    return *s;
  }

  // built-in string and common string operations
  writefln("argc = %d, " ~ "allocated = %d",
  argspecs().count, argspecs().allocated);
}

class CmdLin
{
  private int _argc;
  private string _argv;

  public:
  this(int argc, string argv)   // constructor
  {
      _argc = argc;
      _argv = argv;
  }

  int argnum()
  {
      return _argc + 1;
  }

  string argv()
  {
      return _argv;
  }

  string suffix()
  {
      string suffix = "th";
    switch (_argc)
    {
        case 0:
          suffix = "st";
          break;

        case 1:
          suffix = "nd";
          break;

        case 2:
          suffix = "rd";
          break;

        default:
            break;
    }
      return suffix;
  }

}

If you do choose to go with D check out DSource.org

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