vote up 39 vote down star
37

If you have an interesting story to share, please post an answer, but do not abuse this question for bashing a language.


We are programmers, and our primary tool is the programming language we use.

While there is a lot of discussion about the best one, I'd like to hear your stories about the worst programming languages you ever worked with and I'd like to know exactly what annoyed you.

I'd like to collect this stories partly to avoid common pitfalls while designing a language (especially a DSL) and partly to avoid quirky languages in the future in general.


This question is not subjective. If a language supports only single character identifiers (see my own answer) this is bad in a non-debatable way.


EDIT

Some people have raised concerns that this question attracts trolls. Wading through all your answers made one thing clear. The large majority of answers is appropriate, useful and well written.

UPDATE 2009-07-01 19:15 GMT

The language overview is now complete, covering 103 different languages from 102 answers. I decided to be lax about what counts as a programming language and included anything reasonable. Thank you David for your comments on this.

Here are all programming languages covered so far (alphabetical order, linked with answer, new entries in bold):

ABAP, all 20th century languages, all drag and drop languages, all proprietary languages, APF, APL (1), AS400, Authorware, Autohotkey, BancaStar, BASIC, Bourne Shell,

40  
I'm shocked to see this re-opened. Stack Overflow is not a discussion site, and this question is exceedingly subjective. While we certainly might agree on certain characteristics common to "bad" languages (such as the single-char identifier aspect that Ludwig points out), there's far more potential for the sort of bitter bashing and idle reminiscing seen in Emil H's VB answer. – Shog9 Jun 7 at 16:02
11  
@Nosredna: discussion questions will always be more popular - everyone can have a say, there's no "right" answer so it's just a popularity contest. But (IMHO), encouraging these is bad for SO - the more these show up on the hot / top / front pages, the more get posted in response, effectively de-emphasizing more specific questions. And Ludwig, I appreciate your efforts to encourage objective discussion, but ultimately this is akin to asking, "Which is the worst culture" - you can try to discourage the xenophobic answers, but it's the xenophobes who'll be most interested in answering... – Shog9 Jun 7 at 16:41
30  
These kinds of situations where a very popular question is constantly closed and opened just illustrates that SO needs some way to discuss these things. It doesn't have to be in the question itself... perhaps some way to link a disucssion form to a question to allow this kind of thing would work. – Mystere Man Jun 7 at 16:48
11  
This question has no probative value and serves only to incite flames. – JP Jun 8 at 2:59
10  
->This question is not subjective.<- debatable, but on the other hand, most of the answers are subjective. – crashmstr Jun 9 at 13:07
show 49 more comments

locked by Marc Gravell Jul 1 at 20:58

closed as subjective and argumentative by Marc Gravell Jul 1 at 20:54

101 Answers

vote up 11 vote down

Twice I've had to work in 'languages' where you drag-n-dropped modules onto the page and linked them together with lines to show data flow. (One claimed to be a RDBMs, and the other a general purpose data acquisition and number crunching language.)

Just thinking of it makes me what to throttle someone. Or puke. Or both.

Worse, neither exposed a text language that you could hack directly.

link|flag
show 6 more comments
vote up 3 vote down

I was going to bitch and moan about Java, but obviously it isn't THAT bad and that would have amounted to trolling, and besides, I just remembered something far worse:

Magic II.

It just barely qualified as a language. Really, it could be more accurately described as a pre-SQL database system with a data driven programming model. It was based on the astute observation that almost everything you ever do with database tables involves doing something before you start iterating on the data, then iterating on the data, and then maybe doing something after you're done.

"Programming" Magic involves filling in fields in tables that describe those three phases of a program's life. It also had a text mode screen designer that tied in with this whole mess. A trained Magic user could knock out reports and data entry screens at a reasonably fast pace, which made management happy.

The problem for me was that the language had very minimal abstraction facilities. You could define routines that you could call from other routines. That's it. No data structures other than database tables, no in-memory arrays (you could define new tables, though!)

No hash tables, no way to organize variables (which the language did support) in any meaningful way. No lists. Nothing. Of course, no classes or anything resembling an object model, but honestly - I could live without that. And I did.

Worse yet, the "program" had bits and pieces that were hidden away in fields that you had to zoom into to be able to see - certain expressions, etc. So you could never just read a screen of code and know what it did.

This thing took data driven programming to its ultimate, sad apex. It's an obsession, manifested in a programming tool. I was glad to put that miserable piece of junk behind me.

Recently, I met a former co-worker who worked with me while I was using Magic. It's been almost 20 years since I've done that, but she was all too happy to tell me how she was tasked with maintaining one of my projects, and that she declared defeat when she found a recursive procedure in there somewhere. She had never seen anyone implement recursion in Magic. No one ever has. It was uncharted territory. I don't think anyone realized the tool was capable of recursion.

The project had to be rewritten in a hurry, before it caused someone's brain to explode.

link|flag
show 2 more comments
vote up 4 vote down

Anyone mentioned the script language used in Autohotkey ?
Worst language I ever used.

link|flag
show 2 more comments
vote up 14 vote down

I'm not sure if you meant to include scripting languages, but I've seen TCL (which is also annoying), but... the mIRC scripting language annoys me to no end.

Because of some oversight in the parsing, it's whitespace significant when it's not supposed to be. Conditional statements will sometimes be executed when they're supposed to be skipped because of this. Opening a block statement cannot be done on a separate line, etc.

Other than that it's just full of messy, inconsistent syntax that was probably designed that way to make very basic stuff easy, but at the same time makes anything a little more complex barely readable.

I lost most of my mIRC scripts, or I could have probably found some good examples of what a horrible mess it forces you to create :(

link|flag
2  
mIRC scripting is hell. Imagine a programming language where you MUST use stupid hacks in order to process strings with whitespace in them. Since there are no string literals, it's not possible to store a string with a space at the end. – CyberShadow Jun 9 at 14:01
show 2 more comments
vote up 2 vote down

PowerDynamo

It was a product from Sybase that stored the webapp code right in the database along with your data. There was no variable scope, and the strlen() function was essentially a random number generator.

link|flag
vote up 9 vote down

Regular expressions

It's a write only language, and it's hard to verify if it works correctly for the right inputs.

link|flag
2  
Regex definitely merits heavy unit testing, but it's far more powerful than it is confusing. – ojrac Jun 11 at 3:26
show 3 more comments
vote up 19 vote down

The .bat files scripting language on DOS/Windows. God only knows how un-powerful is this one, specially if you compare it to the Unix shell languages (that aren't so powerful either, but way better nonetheless).

Just try to concatenate two strings or make a for loop. Nah.

link|flag
2  
Unix shell programming is much more powerful and infinitely more sane than .bat/.cmd programming. – Cheeso Jun 8 at 16:40
3  
Concatenating strings is easy: %VAR1%%VAR2%. And there's a for loop: robvanderwoude.com/ntfor.php. The syntax is ugly as hell, but don't claim it can't be done when it clearly can. – Joe White Jun 9 at 1:10
1  
"Concatenating two (or three, I don't remember) strings leaves a whitespace hole between them" - Don't know where you get that idea, but it's still wrong. We do this in our build scripts and it works just fine. I just double-checked. "echo %SystemDrive%%SystemDrive%%SystemDrive%" -> "C:C:C:" – Joe White Jun 10 at 13:10
4  
Duplicate of this answer higher up: stackoverflow.com/questions/961942/… – Jonik Jun 17 at 12:40
show 4 more comments
vote up 6 vote down

I despise proprietry languages like C# and AppleScript whose only reason for existing is to tie developers to a commercial platform or product. This isn't exactly a technical problem, but it is a social one when these languages are then taught in schools. I have a friend who only has Linux installed and he's being taught C# in 1st-Year CompSci. Yes there's Mono, but naturally it's always playing catch-up on features and stability.

link|flag
42  
C# is an Ecma (ECMA-334) and ISO (ISO 23270) standard since it's begining. Java was still proprietary 2 years ago. – Sylvain Jun 7 at 20:34
20  
@Sylvain. The C# language may be a standard (if you don't count the fact it changes every 2 years) but you can't deny its intended goal of tying developers to proprietry class libraries (ie, "Windows" Forms) and IDEs that only work on Windows. You cannot deny that C# is a transparent attempt to have schools teach the .Net platform instead of cross-platform ANSI C/C++. Frankly your comment is technically correct but a bit pedantic and missing the point. C# was NOT a way for Microsoft to make the world a better place - and you know it. Also, yes Java counts. Also Rebol and many others. – SpliFF Jun 8 at 3:56
36  
Great answer - I think any language that runs on a commercial product is just a ploy from the man trying to control us. All programming languages should be home-brewed, just like all computers. Money pollutes everything it touches, and is evil in its own right. That's why I am posting this from a solar-powered computer made out of coconuts and uranium crystals. Can't talk more now, I have to go stir my biomass fuel to make hot water for my home grown tea. – Cheeso Jun 8 at 16:22
12  
@SpliFF: you're coming over awfully paranoid. Sure, Microsoft doesn't run a charity (come to think of – their erstwhile CEO does!) but that doesn't make all their employees pure evil. C# was designed, by these people, not to bind anyone to any platform but to create a better programming tool. And full marks to them! It would be laudable if independent tool support were better but nonetheless C# is a very well-designed, standardized programming language. – Konrad Rudolph Jun 8 at 16:33
17  
Personally I don't think that the free software movement should have a monopoly on programming. – cbp Jun 9 at 12:53
show 18 more comments
vote up 42 vote down

Seriously: Perl. It's just a pain in the ass to code with for beginners and even for semi-professionals which work with perl on a daily basis. I can constantly see my colleagues struggle with the language, building the worst scripts, like 2000 lines with no regard of any well accepted coding standard. It's the worst mess i've ever seen in programming. Now, you can always say, that those people are bad in coding (despite the fact that some of them have used perl for a lot of years, now), but the language just encourages all that freaking shit that makes me scream when i have to read a script by some other guy. This post will probably be voted down to hell, but it i felt like that must have been said ;)

p.s.: yes, i can see that perl is powerful,fast and what not.. that doesn't make my life easier, though. Also I'm not afraid of learning complex new stuff, i'm learning my first functional language (erlang) at the moment, so it's not that perl is something new for me and i'm scared of it. I've done some coding in perl by now, because those old solaris machines only know perl and there shall no additional software be installed.

link|flag
4  
The problem is not that Perl is bad, it's that it's easy enough to use that your colleagues get themselves into serious trouble. I suspect they'd screw themselves over in any language. – David Thornley Jun 8 at 16:02
5  
@Andrei: I rank PHP ahead of Perl because it at least has a reasonable way of passing parameters to functions - I think having to deal with $_[n] (or doing repeated shifts) is crazy. I finally gave up on using Perl for new development when I wanted to pass 2 arrays to one function and had to spend the better part of a day reading & experimenting to do what I would do easily and in seconds in most other languages I've used. – PTBNL Jun 8 at 16:26
3  
@David: I disagree. I usually try hard to make my programs understandable by others, but when I wrote a 3000 line suite of Perl programs, I found that even I had great difficulty maintaining it myself if I hadn't looked at it in a while. I think Python is very easy to use, probably easier than Perl, but I don't see the problems with it that I do with Perl ... or many people leaving Python for Perl, although I know several (including myself) who've dropped Perl for Python. – PTBNL Jun 8 at 16:32
1  
@buster, check out Moose, esp MooseX::Declare and see if you still feel the same :) – Kent Fredric Jun 9 at 2:50
3  
@PTBNL, wow, you wrote 3000 line suites of perl without knowing how to use an array-reference? foo(\@bar , \@baz ) ? – Kent Fredric Jun 9 at 3:27
show 4 more comments
vote up 5 vote down

METLIFE ENGLISH LANGUAGE (MEL)!

I worked for a company that wrote tools to automatically find and fix Y2K problems in Cobol and PL/I. MetLife approached us with 2m lines of code they'd written in MEL, a language they developed in the late 50's or early 60's. MEL was a language that helped inspire Cobol, and its procedural code would look reasonably familiar to any modern Cobol programmer.

We had a strong developer take a crack at writing a translator to rip through MEL programs and correct identified dates. He actually got a demo going in a couple weeks, and he thought that another 3-4 weeks of work were all that would be needed to get it into shape for production. Great, we thought, and decided to take on the work.

Unfortunately, he hadn't really studied MEL's very primitive equivalent of the Cobol DATA DIVISION (where declarations go). It turned out each MEL program provided its own view of each input or output file, and it only declared those fields it was interested in. There might be 30 or 40 different takes on what an input file with variant records looked like. Talk about blind men and the elephant!

An exceptionally bright and driven guy then took over and worked out the semantics of identifying which record definitions described what file, a process made much harder by the presence of variant records in many files. He then wrote the algorighms to unify each set of alternate record definitions into a common record definition, and then mapping everything from old emulated Honeywell data types into new IBM mainframe types. It took two person years to get it all working.

link|flag
vote up 2 vote down

Definitely the worst language I've ever used was Oz. It is a failed attempt to create a multiparadigm programming language. As you can imagine it ends up being really obscure and with an extremely complicated syntax. You have different delimiters to mark that you are in working in a functional way or in a imperative way. I always find a little strange defining classes with functional non side effect method parts.

link|flag
vote up 2 vote down

I also forgot to mention prova and yes, it is a mixed language. It is a prolog implementation built on top of java which means that it is damn slow. They sell it by its ability to call java functions, the sad part is that you lose backtracking when you do it. So, all in all, you lose the strengths of both languages. I still don't understand why the authors didn't choose just an implementation of prolog inside java, so you can call prolog code from java instead of build your own interpreter.

link|flag
vote up 59 vote down

Not sure if its a true language, but I hate Makefiles.

Makefiles have meaningful differences between space and TAB, so even for two lines appear identical, they don't run the same.

Make also relies on a complex set of implicit rules for many languages, which are difficult to learn, but then are frequently overridden by the make file.

A Makefile system is typically spread over many, many files, across many directories. With virtually no scoping or abstraction, a change to a make file several directories away can prevent my source from building. Yet the error message is invariably a compliation error, not a meaningful error about make, or the makefiles.

Any environment I've worked in that uses makefiles successfully has a full-time Make expert. And all this to shave a few minutes off compilation??

link|flag
6  
"Any environment [...] that uses makefiles successfully has a full-time Make expert" See Recursive Make Considered Harmful to fix this. Make is dense, but does not need to be that awful. The scary part is that the WS sensitivity was indentified as a bug when there were dozens of users, and left in because there were dozens of users... – dmckee Jun 7 at 20:19
5  
I'll take make over ant any day of the week. Use a decent editor that is make-aware and the tab thing is mostly a non-issue (for example, emacs does a decent job of catching whitespace problems) – Bryan Oakley Jun 8 at 3:19
1  
Martin York: Recognize that most programmers want to PROGRAM, not spend significant amounts of time and knowledge on a build-system. Most of us expect the build-system to "just work". After all, we're not asking much of it, just compile and link together some source-files; little more. Make massively overshot its target niche. – abelenky Jun 8 at 19:31
1  
you think make is bad, pair it with automake, and you've got a diabolical global badness I refuse to attempt to debug. – Kent Fredric Jun 9 at 3:04
show 8 more comments
vote up 1 vote down

No-one had mentioned DCL???

link|flag
show 3 more comments
vote up 2 vote down

My vote is DB/C DX which is based on the DATABUS. I am sure most of you guys have never heard of it, and those that have.... I am sorry.....

link|flag
vote up 3 vote down

For my senior design, we programmed a Canon camera to produce depth maps using CHDK. Most of the code was written in C, but you have to interface to it with this ridiculous language called uBasic. Basically, it wasn't implemented with a proper parser, and so variables can only be 1 letter, it's insanely slow, and if you make a mistake, the camera just shuts off.

link|flag
vote up 6 vote down

In Unix, m4 scripts and sendmail.conf.

link|flag
show 2 more comments
vote up 4 vote down

The old Excel macro-language It was really frustrating to store variables in an excel sheet. VBA was also pretty bad.

link|flag
show 1 more comment
vote up 5 vote down

For me it'd have to be FileMaker.

The ScriptMaker

This screenshot shows the until recently named "ScriptMaker", which had many improvements in FileMaker 9 such as Ctrl+C Ctrl+V shortcuts for copying and pasting, and a non-modal dialog so you could edit more than one script at once.

You edit individual Scripts using this dialog box. script "steps" (shown on the left) are added into the list on the left hand side (by double clicking), and are moved up and down (using the little blob to the left of "Set Web Viewer"). Only one line can be moved at once, and commenting for the purposes of temporarily disabling script steps is only available in the Advanced version of FileMaker Pro.

Constructing a Script effectively ruins your wrists, as you're swapping between keyboard and mouse thousands of times an hour typing stuff into the the little config boxes and re-arranging your lines of code.

A script is technically a procedure, and can be passed ONE parameter. Yup, just one. If you want more than one, you have to effectively combine your parameters using some delimiter, pass it to the script, then split the parameters out. Before scripts could have parameters at all (before FM7 IIRC), it was normal to use globals to pass data around.

This guy wrapped most of his hate into a hoax FileMaker 11 sneak preview.

link|flag
vote up 1 vote down

Worst Programming Language? - Brainfuck

I haven't worked with it myself, but I would call it the worst. It's generally used as a challenge though, not for production (more like: I'm bored this weekend, let's see if I can re-write tic tac toe in it). Check out it's Hello World program on wiki.

link|flag
11  
Yes, but Brainfuck is supposed to be bad. – Barry Brown Jun 8 at 8:46
1  
It's a demonstration language, not a real programming language. – RBarryYoung Jun 10 at 2:52
4  
bf was not intended to be good or bad, but it was intended to have the smallest full compiler imagineable. at 233 bytes of x86 code, including exe headers, its unbeaten. The language naturally suffers for it, of course. – TokenMacGuy Jun 10 at 6:36
3  
I seriously doubt anyone ever worked with this language. I mean worked, as in trying to get something done (as opposed playing around, or writing something as a mental challenge). – Jonik Jun 17 at 5:46
show 1 more comment
vote up 3 vote down

APF. You are eprobably lucky enough never to have heard of this nightmare. It was an expensive add on to IBMs mainframe hierachical database/transaction monitor IMS system. Where to start.

There was no support for arrays. If you had an array of ten items well you coded ITEM1, ITEM2 etc. and wrote ten lines of code to process each item.

Your code was stored in the database and interprated at run time. Do to the internal stucture of the thing your code was broken up and stored in several records. It was absurdly easy to overwrite someone elses code.

Some of you code was associated with the transaction (IMS speak for a service) but some of you code was assoicated with the database record -- if you got it wrong bits of your program ran every time someone accessed a record.

No debugger, the "compiler" only did basic syntax checking most errors appared at run time, with one of it four error messsages.

One of these error messages was 'INVALID DATA TYPE' -- thats all, no variable name, no line number, no clue.

Just plain horrible.

link|flag
vote up 7 vote down

I'm going to vote for ColdFusion. It's trying to be a cool scripting language, but being done up in html-like tags was driving me nuts - it's been a little while since I had to deal with it, but as I remember variable declarations could be a bear, and it was easy to have slightly different versions of the server on two different environments which would have code working differently on both.

If you wanted to do anything really impressive with it, it basically involved creating an object in Java and figuring out how to link it in with coldfusion's server so you could invoke it as a tag. I'm working in PHP, and even though PHP has it's problems, ColdFusion was definately worse.

link|flag
show 3 more comments
vote up 16 vote down

The worst language? BancStar, hands down.

3,000 predefined variables, all numbered, all global. No variable declaration, no initialization. Half of them, scattered over the range, reserved for system use, but you can use them at your peril. A hundred or so are automatically filled in as a result of various operations, and no list of which ones those are. They all fit in 38k bytes, and there is no protection whatsoever for buffer overflow. The system will cheerfully let users put 20 bytes in a ten byte field if you declared the length of an input field incorrectly. The effects are unpredictable, to say the least.

This is a language that will let you declare a calculated gosub or goto; due to its limitations, this is frequently necessary. Conditionals can be declared forward or reverse. Picture an "If" statement that terminates 20 lines before it begins.

The return stack is very shallow, (20 Gosubs or so) and since a user's press of any function key kicks off a different subroutine, you can overrun the stack easily. The designers thoughtfully included a "Clear Gosubs" command to nuke the stack completely in order to fix that problem and to make sure you would never know exactly what the program would do next.

There is much more. Tens of thousands of lines of this Lovecraftian horror.

link|flag
1  
geocities.com/connorbd/tarpit/… I see what you mean... And they trusted this abomination with people's money?! – cheduardo Jun 16 at 11:17
vote up 4 vote down

PC-FOCUS

I worked on a warehouse inventory + management system where the back office subsystem was implemented in PC-FOCUS.

All that needs to be said about this language is that there was a 100+ page chapter in the programming manual titled "Workarounds".

link|flag
vote up 7 vote down

Logo...that damn turtle would never go where I wanted it to.

link|flag
vote up 2 vote down

In terms of languages I've come across, I'll vote for COBOL and Scheme.

COBOL was definitive proof that business majors should never write a programming language (and this is coming from a business major graduate -- CIS). You should not be able to write semi-coherent novels and have it compile into something. I know that it had its use 40 years ago, but someone ported it to COBOL.NET, for crying out loud.

Second place would be Scheme, which had exactly one variable type: the linked list. Trying to learn how to think in it is like trying to learn how to think like a polar bear if you're an American-born Martian. It's totally alien to everything else.

In terms of languages I've used professionally, VBScript hands down. It's like VB only worse. I once tried to implement the MD5 algorithm in VBScript. The first thing I had to do was implement freaking bit-shifting operations. Rather than reinventing the wheel, I went out and looked for an implementation. The one I found, I kid you not, followed the following algorithm:

  1. Convert your number to hex
  2. Convert your hex to a string, e.g., 0x08 -> "08"
  3. Using a giant select case statement, convert each digit to a string of 1s and 0s, e.g., "8" -> "00001000"
  4. Now that you have a giant string of 1s and 0s, shift them around as necessary

It was a total mess. And it was the best one I found.

(Caveat: That's the algorithm as best I remember it. It was 6 years ago. :) )

link|flag
1  
COBOL was written by some pretty smart computer people. It was not a business school project. It's just really old, and most languages that old have evolved into something better (Fortran, Lisp), or been replaced by descendents (Algol), or been forgotten completely (Autocoder). – David Thornley Jun 8 at 16:07
4  
Scheme is a different sort of programming language, and forces a different way of thinking, but I think that's a good thing about it. It's not like you're forced to learn it, in general, unless you're taking a computer science course - and in that case you need to understand the concepts behind it. – David Thornley Jun 8 at 16:08
1  
Can't you bitshift by multiplying/dividing by powers of two? – Charlie Somerville Jun 10 at 6:46
6  
Scheme has had vectors, hashtables, strings, characters, integers, fractions, and more, for the entire time I've known it, which goes back at least to 1995 or so. If you hated it, you hated it, but saying that you hated it because it only has lists is...well, weird. – Benjamin Pollack Jun 11 at 0:16
show 2 more comments
vote up 3 vote down

Nobody said AS400????

I had that at university, and it was definitely the worst...

link|flag
show 3 more comments
vote up 3 vote down

FOCUS, touted as a '4GL' (fourth generation language). Some systems could use FOCUS like SQL, doing db queries, the results of which were wrapped in BASIC or some other procedural language, but the system I worked on at Boeing in the 80s didn't have that. Kind of like a very poor excel to run a business enterprise. That was the only programming job I hated.

link|flag
vote up 4 vote down

Symbian C++ Well, it is not C++. It's learning a whole new language altogether and it doesn't work that well.

link|flag
vote up 11 vote down

I can't belive nobody has said this one:

LotusScript

I thinks is far worst than php at least.

Is not about the language itself which follows a syntax similar to Visual Basic, is the fact that it seem to have a lot of functions for extremely unuseful things that you will never (or one in a million times) use, but lack support for things you will use everyday.

I don't remember any concrete example but they were like:

"Ok, I have an event to check whether the mouse pointer is in the upper corner of the form and I don't have an double click event for the Form!!?? WTF??"

link|flag
show 5 more comments

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