vote up 3 vote down star
1

My CS department is currently considering a new introductory "high level" programming course. It is partly aimed at non-majors or those with other primary majors that will find it useful to build programs, including biocomputation, etc.

I have a PhD in programming languages, but I'm finding it hard to say exactly what languages currently would best fit this situation. The current contenders from my point of view are Python, Boo, Ruby, F# and C#.

Personally F# wins for me, but I think Python will be more acceptable to other people, and Boo to me is better than Python just because of the instant feedback you get with an IDE than understands the types of things which really helps in teaching introductory programming.

C# with type inference and lambdas is increasingly getting close to Python in expressability, from what I can see, and LINQ does things Python can't easily, hence it is a contender.

What advice for this situation?

flag

Who is your audience? Would it be a mandatory class, or an elective? – Kena Oct 9 at 18:26

15 Answers

vote up 2 vote down check

Personally I think that functional languages will work well for beginners. I think that most programmers learn imperative languages first, then functional languages, which gives functional languages a reputation for being hard to learn.

In my opinion, a course that begins with functional languages might be less confusing. It would allow students to focus on the idea that a program is composed in distinct parts that fit together like a machine, which I think would visualize very well for non-majors. I'd certainly hate to be stuck explaining memory allocation, pointers, classes, and many other imperative features, when a non-major student really just wants to build something useful.

That said, there's a lot of arguments for using an imperative language, such as readily available teaching material and prevalence in most systems. In the end I think it depends on if you're aiming to send these students off into the world creating computer systems on a team, or just giving them enough knowledge to get things done.

link|flag
Right - I agree here. To people not focused on programming, functional languages are less confusing. To those who have already learnt imperative ways, it's hard to go back. – RD1 Oct 9 at 15:19
vote up 0 vote down

I would use C# , C and the other languages are too hard when starting. Pascal used to be used first year , C and Lisp 2nd year . Avoid functional UNLESS there are lots of maths /science majors.

Ben

http://www.shanghai-software.com/blog

link|flag
vote up 1 vote down

Except for the fact that its documentation isn't terribly good (yet), I would recommend Boo. It gives you the easy syntax of Python and the ability to explore functional approaches (like Python), together with the great standard library of .NET.

Your point about tools being better able to understand types is a strong vote in favor of Boo, IMHO.

However, as a second choice, F# is definitely a strong contender as well, for similar reasons.

link|flag
Yes, well said. Boo and F# seem the best options currently. Alas both are less stable as languages due to the new VS2010. In fact, I'd prefer something not tied to Visual Studio and with clear Mono stability - but is that currently at the stage where you'd let first year students use it? – RD1 Dec 2 at 15:46
vote up 0 vote down

Personally F# wins for me, but I think Python will be more acceptable to other people

Go with F# / OCaml. Here, in France, OCaml is the most used language for teaching programming in universities or classes préparatoires aux grandes écoles.

link|flag
vote up 0 vote down

From my experience learning Ruby myself, I would lodge another vote for it. I suspect that the expressive, sugary syntax will work well for novices simply because "say what you mean" will make it relatively easy to pick up the language and feel like things are getting done.

link|flag
The trouble with sugar is that makes things look easier than they are. In a teaching context, that's bad. You want people to be able to generalize what they've done, and that means the constructs shouldn't be sugared. – RD1 Oct 9 at 15:54
RD1, what ruby sugar is liable to confuse a novice (for the reasons you give above) ? – banister Oct 30 at 11:04
vote up 4 vote down

As a recent CS grad, it's worth noting that while learning Lisp, SML, and Haskell was very influential, Ruby was the first language that made me really excited to throw around functions as first class objects. (I had learned Python before, but I found Ruby much more intuitive.) Part of the reason is that Ruby was instantly usable and made me more productive within a few days, plus there were jobs in Ruby within a couple blocks. I can't say the same thing about SML or Haskell (esp. in the jobs category), although they're definitely attractive because they're purely functional languages. (There is something mind-bendingly cool about learning that paradigm.)

From what I understand, F# is starting to change the functional language landscape. I'm not sure what implementations are out there, but keep your OS X and Linux users in mind if that's what you go with.

link|flag
Well, F# isn't purely functional. It's in the same camp as Python really - functional plus imperative plus OO. Haskell is truly influencial though. Ruby is fine... but to me as a language it has nothing new other than being very selective on what to include in terms of complex concepts. What is better is a language that includes only simple concepts, and builds the rest from those. – RD1 Oct 9 at 15:33
Regarding: "What is better is a language that includes only simple concepts, and builds the rest from those." Depending on what you mean, this is what Ruby does. I'd be happy to discuss this if you'd like. – Benjamin Oakes Oct 9 at 16:15
(As an illustration, you might look at Rubinius -- Ruby written in Ruby -- made in the tradition of Lisp.) – Benjamin Oakes Oct 10 at 7:52
Oh - Ruby starts from very complex concepts compared to some other languages though. You can certainly do better than Ruby for an orthogonal and logical foundation. – RD1 Dec 2 at 15:30
I'd agree with that. But if it's for beginners... I guess it really depends on what the OP's needs are. – Benjamin Oakes Dec 2 at 17:02
vote up 0 vote down

The first two-thirds of the course should be imperative language with the last third being functional. I would choose C# for the imperative segment and can't recommend a functional language since I do not use them regularly. F# seems practical to me because you could use the same Microsoft free tools for both segments. You wouldn't have to spend two weeks of the semester dealing with student's lame setup issues.

link|flag
Seriously: why not make the first third functional in F#, then 2/3rds imperative in F#? There's quite a bit of experience that says that people who learn imperative programming first have more trouble understanding functional programming. When the converse isn't true at all. – RD1 Oct 9 at 15:42
That would work too. I see functional languages having a smaller domain personally, hence 1/3 dedication. I started to learn F# but it felt geared toward solving math functions. I like the concepts and the benefits, such as thread safety due to statelessness. However, I can solve the same functions using imperative languages. For me, the domain for C# is much larger. I understand this is an intro course and they won't be learning about alot of other issues such as GUI dev, messaging, advanced IO. Do functional first, conduct your own experiment on them! – Steve Oct 10 at 5:53
Smaller domain? We shall see. Certainly OO is losing ground to functional recently, and one of the strengths of C# compared to F# is that it's turning towards functional concepts in a way that, say, Java is not. There are game engines written in functional languages. There were OO systems in Lisp before Smalltalk caught on. Functional languages have a broader domain than OO, in my view. – RD1 Dec 2 at 15:54
vote up 4 vote down

I find that non-CS-majors who dabble into programming generally gravitate towards scripting languages (makes it easy to automate tasks) or specialized scientific languages (eg: MATLAB, statistical analysis languages, etc...)

If you want a general-purpose language, I'd tend to go with Python, which also has a simple syntax, is easily available on many platforms, and can work decently both as a general-purpose number-crunching tool AND a scripting tool.

Otherwise, for scientists and engineers, you can do worse than teach them MATLAB (which is what my undergrad school did with mechanical engineering majors). It's not a very elegant language, but it shows the basic concepts, and that's what they're most likely to use throughout their career.

These might not be the "best" languages to learn, but IMHO, the best language is the one they'll keep using to solve their problems once the class is over, and these two fit the bill.

link|flag
Yes, this is realistic. We will have another course in Matlab though - this will be for those wanting to actually build programs. Matlab is really not right tool for that. – RD1 Oct 9 at 15:37
vote up 2 vote down

Python magazine had an article about using Python for the Introductory course, with excellent results:

http://pymag.phparch.com/c/issue/view/105 (Costs, money, sorry).

Basically the conclusion is that Python is just as good as C in preparing you for a programming course where you need to use C (which is a bit of a surprise) and more positively, even those who did not go on to major in CS continued to use Python after the course ended to solve their real world problems.

So there is no doubt in my mind: Python.

link|flag
Yes - but old news to some. Experience in a functional language is well known to make nearly all other languages accessible. – RD1 Oct 9 at 15:15
Yes, like teaching set theory will prepare you for maths better than addition and subtraction. Problem? It's so abstract many never gets it. Functional languages as an introduction to programming for non-majors is definitely not a good choice. – Lennart Regebro Oct 9 at 15:22
So learning C is best??? – RD1 Oct 9 at 15:28
1  
I have said nothing that even in it's wildest dreams could remotely consider imagining anything that no matter how much you squint would look like something that can be misinterpreted in that way. – Lennart Regebro Oct 9 at 15:35
2  
Most beginning students would find the for x in some_list idiom much easier to grasp than the functional map idiom. List comprehensions are a happy medium between the two, but the beginning students should learn the for idiom first and then move on to list comprehensions. Even weirder is the functional reduce when compared to a straightforward for loop with an accumulator variable. It gets even weirder with lambdas. In short, for stuff beyond calculating expressions that might contain function calls, the functional way of doing this is IMHO too abstract for beginning students. – steveha Oct 9 at 16:38
show 4 more comments
vote up 1 vote down

Look at Processing. It starts out simple, but you can do quite complex things with it. The focus is on creating a visual of data and it targets non-programmers.

link|flag
Like Logo, Processing gets quickly complex, too. – Aaron Digulla Oct 9 at 15:19
I looked at it, but I think we are aiming for our students to be able to do more than that. – RD1 Oct 9 at 15:40
You might also consider Alice (alice.org) – plinth Oct 9 at 15:43
Yes, I know Alice well. I don't think it's right for our scientists and engineers in terms of some casual programming. – RD1 Oct 9 at 15:46
vote up 1 vote down

IMO, a statically typed language is the best way to start teaching high-level programming. I'd therefore suggest C# or F#, or even good old OCaml.

Dynamically typed languages are advanced material; it's really important for new students to understand the issues involved in typing first, IMO. Once the fundamentals are learned, the students are ready to move on to dynamically typed languages, and for that I prefer Python.

Edit: Based on another comment and a re-read of your description, it looks like you're aiming this class at "Programming For Math and Science Majors" or something like that.

In that case, I still stick by my statically typed suggestion. Go with F#.

link|flag
By that argument, they should start with C. – Svante Oct 9 at 15:01
1  
@Svante: No way, no how. C may be statically typed, but it's a screwed up language and not nearly high level enough for the original post. Maybe I dumped on your favorite dynamic language, and for that I apologize, but I've been around the block a bunch of times, and in my experience statically typed languages are a necessary foundation. – Randolpho Oct 9 at 15:05
2  
They learn to understand typing with a dynamic language too. Dynamic languages also has types. Python also is strictly typed, so they really have to learn typing. I don't see how the necessity of declaring a variable would make a difference in understandning. – Lennart Regebro Oct 9 at 15:10
I'm not considering any language that would require you to declare the type of a variable. If that's what you call a dynamic language, I'm not considering those. – RD1 Oct 9 at 15:44
2  
@Randolpho - I disagree, and I think you're only talking about a very limited form of type inference. In Haskell and F# you can define factorial as follows, with no types declared. Haskell: factorial n = if n=0 then 1 else n * factorial (n-1) OCaml/F#: let rec factorial n = if n=0 then 1 else n * factorial (n-1) – RD1 Oct 12 at 3:41
show 4 more comments
vote up 2 vote down

What's the goal of the class? To do straightforward procedural programming (which includes the skills of breaking a task into small steps and implementing those steps in code) or to try to seriously reshape their thinking?

In either case, you probably don't want to give intro students LINQ or use lambda heavy code. You need to crawl before you walk.

F# is probably not a good choice either since it can't decide whether or not it is functional or procedural (yes, I understand the reasons and the distinction).

An ideal intro language should be straight forward, easy to use, and especially have a low barrier to entry to doing something interesting (ie, get the student hooked).

I would argue that of the list you offer, Python or C# fit nicely. Outside of your list, I would put LISP/Scheme if you want to take the Little Lisper approach to learning to write code and solve problems.

link|flag
1  
The Little Lisper approach would be fine also with F#. Better I think given support from the IDE is really extremely good in terms of finding type errors as you go. Lisp is seriously the most influencial language of all time. But, it shows it's age now, despite being the foundation for almost everything else. You could easily stick just to the functional side in a unit like this in F#... ignore the imperative parts. – RD1 Oct 9 at 15:11
vote up 14 vote down

MIT has switched from Scheme to Python for their EECS introductory course. I agree with Brian Agnew that functional languages are too difficult to comprehend, compared to imperative programming.

link|flag
1  
Yup, QUT and a few other universities has switched from Scheme to Python now too. – Dominic Bou-Samra Oct 9 at 15:00
1  
I agree that Python is a good language. But, actually what I find best about it is that it does do things following functional programming ideas. But without being too committed to them. For people often just trying to do calculations, functional programming is pretty good. – RD1 Oct 9 at 15:02
2  
I don't think MIT switched to Python because Scheme is too hard, that would be a sad joke. As far as I understood, the focus of the course has moved from the understanding inner workings of a program (cons cells, data structures, recursion...) to learning how to reuse software without having a total comprehension of it (OO, libraries from the real world, programs with GUI and network protocols...). Which makes sense. – Damien Pollet Oct 9 at 15:23
2  
MIT didn't switch because Scheme was too hard to understand, though. I expect they'll still teach FP (amongst other things); they'll just use Python to do it. – Craig Stuntz Oct 9 at 15:25
1  
@Craig I think you are right. Python supports FP well enough. Scheme is really nice though. – RD1 Oct 9 at 15:50
show 5 more comments
vote up 3 vote down

Java or C# - both have lots of good books and tutorials available, wide acceptance in the industry and look good on a resume. Also, both allow you to quickly produce something that is usable without having to deal with a lot of the lower level details. It's a good way for people to be able to see what writing their own programs can enable them to do.

link|flag
2  
This isn't about industry - these people will find jobs based on another scientific or engineering discipline, not their computing skills. There are higher level languages than Java certainly. – RD1 Oct 9 at 14:58
vote up 4 vote down

If you're looking at non-majors, I would be tempted to shy away from functional languages, and look at something imperative like C# (which has advanced features like lambdas, which may go some way to address any functional requirements).

Have you considered Java combined with BlueJ ? BlueJ is an IDE geared towards novices, and that may well address your needs.

link|flag
4  
Java is right out. That's what we teach out majors, and we find it hard work. Java seems behind the times these days, as a langauge. C# is a contender. But, seriously programmers seem to find Java and C# more natural, but for mathematical things many people report that functional languages are more intuitive. – RD1 Oct 9 at 14:57
@Rowan Davies people can spend years programming in C# and not realize some of the functional programming features it supports, such as delegates and anonymous functions. And as of 3.5 (or was it 3?) lamdbas. – Matt Oct 9 at 15:10
Yes - but when teaching you can easily teach it using a "higher level" style. Then it looks pretty similar to Python or F# or even Haskell. – RD1 Oct 9 at 15:25

Your Answer

Get an OpenID
or

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