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

102 Answers

vote up 6 vote down

I think MaxScript, the scripting language which comes with 3d studio MAX, I never could see any logic to its syntax

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

JCL - Job Control Language for IBM Mainframes... not quite a programming language, more a batch file thing.

This was based on the punch card which would normally be placed at the start of jobs, i.e. Same syntax, different medium. The 71 column limit and fact that the cards cost money meant verbosity was a sin best left to COBOL source. This attitude carried over to JCL, the non paper counterpart.

I just about figured out how to change the job queue and parameters in the lead card during my time working with it. Wikipedia provides the following fine example:

//IS198CPY JOB (IS198T30500),'COPY JOB',CLASS=L,MSGCLASS=X
//COPY01   EXEC PGM=IEBGENER
//SYSPRINT DD SYSOUT=*
//SYSUT1   DD DSN=OLDFILE,DISP=SHR
//SYSUT2   DD DSN=NEWFILE,
//            DISP=(NEW,CATLG,DELETE),
//            SPACE=(CYL,(40,5),RLSE),
//            DCB=(LRECL=115,BLKSIZE=1150)
//SYSIN    DD DUMMY

Precisely.

Honourable mention must go to Cincom Mantis, an "application generator" (read: text-based form designer) "powered" by a COBOL-like 4GL. Mantis is the language which helped me decide to go get a degree - the last of several CICS in the ass...

edit Mentions of DCL and the like elsewhere... Datatrieve I also remember. These were indeed awful, but still preferred the VMS stuff to anything mainframe.

link|flag
vote up 7 vote down

CSS

For basic styling its OK, and selectors are pretty cool, but there's something a little bit sadistic about the box model, floats and clearing.

Hacking the language to make it do fundamental things, such as move one box below another, is all in a days work.

Here we are living in the future and just getting basic design elements to work, like rounded corners or drop shadows, is an exercise in futility.

The concept of 'reusability' pretty much ends with Ctrl-C Ctrl-V. Even a seasoned CSS writer will rarely touch someone else's stylesheet - meaning that basic layouts are routinely rewritten again and again all around the world.

Of course it shouldn't take all the flack - any hope it had of offering something truly useful to the world was cruelly dashed upon the rocks by the de facto 'platform' for the language - Internet Explorer.

link|flag
1  
CSS also falls flat on its face if you want to do any sort of layout that sizes itself based on the content. This is one of the reasons why HTML tables are still used for layout purposes. – 17 of 26 Jun 9 at 14:02
5  
@17: This is outright wrong. CSS has limitations but this absolutely isn't one of them, you need to learn more CSS. @cbp: CSS does what it's designed to do exceptionally well the problem is that it hasn't been allowed to advance with designers needs which is almost entirely the fault of the CWG and Microsoft. Nothing to do with the language itself which imho is damn near perfect as a language. – annakata Jun 9 at 16:17
1  
Ah... cbp: you can actually specify table-style layouts for arbitrary elements using CSS. That certain browsers have classically had poor implementations of this part of the language isn't really a fault of the language itself. – Shog9 Jun 11 at 0:50
1  
@cbp, stop blaming the CSS specification/language for the flaws and failures of IE. – The Wicked Flea Jun 11 at 19:55
2  
@annakata "CSS does what it's designed to do *exceptionally well*" If that is true, it has been designed to solve the wrong problem, which I think might actually be the case. I've heard people defend CSS as a styling language, not a layout language. Well, if you want my HTML to be semantic, I'm going to need a layout language. It is unclear to me why the DOM structure of semantic markup should be imposed on my layout in the first place. That is bad enough. But then to only give me the power to "style" and not "lay out" horrible. – PeterAllenWebb Jul 1 at 20:04
show 5 more comments
vote up -4 vote down

java

Nuff said

link|flag
1  
Actually, that's hardly "nuff" said. Other answers give at least some justification, and this should too. – Jonik Jun 17 at 5:39
3  
You don't know Java, nuff said – victor hugo Jun 28 at 18:34
show 2 more comments
vote up 3 vote down

My answer is fairly borderline but I think it's worth putting on the record:

HTML

Not a particularly powerful language by any means but given the number of people who have more than a passing familiarity with it and would classify themselves as programmers I think it should qualify.

A lot of the angst (in this thread even) directed at languages such as PHP has its roots in the limitations of HTML. Consider a few of its low-points: it encourages the mixing of content and presentation, it is verbose and repetative, the spec still has areas of ambiguity, and, tellingly, implementations have traditionally suffered from a lack of conformance to the spec. The grand ecosystem of client and server side languages owe a lot to the fact that straight HTML is a pain.

Yes, there are bad quirky languages, but pushing a common language beyond its limits is a greater evil in my book.

link|flag
8  
HTML is a markup language, not a programming one. – akappa Jun 9 at 21:57
show 1 more comment
vote up 6 vote down

FORTRAN 77

To be fair, perhaps that in 1977 it was a pretty good language, but by the time 1999 rolled around I had to maintain a FORTRAN 77 program that was originally started by my advisor when he was a grad student sometime in the 1970's, (on punch cards, orignally). The program was 'enhanced' hacked, plugged for over twenty years by people of various abilities. The oldest code was ALLCAPS, chock full of GOTO statements, global variables, and functions with more parameters than I have fingers. Originally variable names in Fortran were limited to 6 characters, but to save bytes most variables were given such descriptive names as 'A', 'B', 'AA', 'II', etc.

Granted, much of my experience was related to how the program was written, but the language didn't really encourage good programming style:

  • Implicit typing depending on the first letter of the variable name (e.g. names that started with an 'I' to 'N' were integers, otherwise the default was REAL)
  • Fixed statement layout (a holdover from punch cards: column 0 would indicate a comment line if it had a 'C', labels in columns 1-5, continuation character in column 6, statements in columns 7-72)
  • Statement labels (numeric labels at that)
  • KEYWORDS WERE ALL CAPS

Thankfully it's been 10 years since I've looked at FORTRAN and I've forgotten more of the annoyances that I remember.

link|flag
2  
GOD is REAL, unless declared INTEGER - old Fortran joke. – David Thornley Jun 18 at 21:32
show 1 more comment
vote up 5 vote down

RPG II?? anyone?

It was among the worst checkthis Wiki description for a brief intro to a language that lived long past its expire by date.

On the bright side you could write programs drunk or sober and it didn't make much difference

link|flag
vote up 22 vote down

MUMPS

I worked in it for a couple years, but have done a complete brain dump since then. All I can really remember was no documentation (at my location) and cryptic commands.

It was horrible. Horrible! HORRIBLE!!!

link|flag
1  
that language WTF's hard. It deserves a high ranking, with PHP. People call Perl line noise, ye gods, if perl is line noise, that code is pure bitrot. – Kent Fredric Jun 9 at 3:00
1  
SO bad I had almost forgotten it by now, thanks... – dverespey Jun 17 at 4:57
show 1 more comment
vote up 2 vote down

dBase II (that's 2, not 3): Fortunately I didn't use it a lot, and it's been over twenty years, so I don't remember much except the pain! IIRC, its liberal use of special characters in variable names (and other places?) made it almost impossible to read, and it was lacking in flow control. It seemed that 3 got a lot more use (and already did when I was using 2, but my employer was too cheap to upgrade), but I don't know if it was any nicer.

link|flag
vote up 2 vote down

OPS5. Even thinking about it now makes me openly weep.

link|flag
vote up 71 vote down

XSLT.

  • XSLT is baffling, to begin with. The metaphor is completely different from anything else I know.
  • The thing was designed by a committee so deep in angle brackets that it comes off as a bizarre frankenstein.
  • The weird incantations required to specify the output format.
  • The built-in, invisible rules.
  • The odd bolt-on stuff, like scripts.
  • The dependency on XPath.
  • The tools support has been pretty slim, until lately. Debugging XSLT in the early days was an exercise in navigating in complete darkness. The tools change that but, still XSLT tops my list.

XSLT is weird enough that most people just ignore it. If you must use it, you need an XSLT Shaman to give you the magic incantations to make things go.

link|flag
6  
I detest XSLT with a passion. – JohnOpincar Jun 9 at 4:12
1  
XSLT is powerful enough to get some very complex stuff done, but it's done entirely without your knowledge of how it worked to begin with. That, and it's pretty processor heavy thanks to frequent recursion. – The Wicked Flea Jun 10 at 21:38
1  
Agreed. Driving screws with a hammer. – cheduardo Jun 20 at 13:35
9  
XSLT is a sort of functional programming language. I don't find it to be that painful. – Brian Jun 23 at 16:42
show 3 more comments
vote up 3 vote down

SNOBOL had some neat features, and string processing abilities more extensive than Perl's. It also had one type of statement: <base string> <match string> = <replacement string> :S(<label>) :F(<label>) where most of the components could be omitted. Control structures were done by jumping to one label or another (if present) depending on whether the match string could be found in the base string. The strings could include assorted functions and substrings, so a reasonable SNOBOL string could include all the syntax trees mentioned in the back of your favorite programming language standard.

It was trivial to write a parser in it (although it wouldn't necessarily be at all efficient), but anything like arithmetic or loops were pains.

link|flag
vote up 1 vote down

Visual Basic. I simply fail to understand its cryptic syntax, since it doesn't follow any programming convention. As a guy used to the syntax of C/C++ I may be partial though. But that doesn't undermine the fact that VB is THE worst language I've worked with.

link|flag
8  
-1: I was going to let this pass, because everyones entitled to their opinion, but a programmer of a lexi-crypto language like C calling Visual Basic "cryptic"? Sorry, that's just ignorance. – RBarryYoung Jun 10 at 2:56
show 5 more comments
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
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 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 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 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 7 vote down

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

link|flag
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 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 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 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 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 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 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 6 vote down

In Unix, m4 scripts and sendmail.conf.

link|flag
show 2 more comments
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 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 1 vote down

No-one had mentioned DCL???

link|flag
show 3 more comments

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