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

prev 1 2 3 4
vote up 18 vote down

I haven't yet worked with many languages and deal mostly with scripting languages; out of these VBScript is the one I like least. Although it has some handy features, some things really piss me off:

  • Object assignments are made using the Set keyword:

    Set foo = Nothing
    

    Omitting Set is one of the most common causes of run-time errors.

  • No such thing as structured exception handling. Error checking is like this:

    On Error Resume Next
    
    
    ' Do something
    
    
    If Err.Number <> 0
      ' Handle error
      Err.Clear
    End If
    
    
    ' And so on
    
  • Enclosing the procedure call parameters in parentheses requires using the Call keyword:

    Call Foo (a, b)
    
  • Its English-like syntax is way too verbose. (I'm a fan of curly braces.)

  • Logical operators are long-circuit. If you need to test a compound condition where the subsequent condition relies on the success of the previous one, you need to put conditions into separate If statements.

  • Lack of parameterized class constructors.

  • To wrap a statement into several lines, you have to use an underscore:

    str = "Hello, " & _
          "world!"
    
  • Lack of multiline comments.


Edit: found this article: The Flangy Guide to Hating VBScript. The author sums up his complaints as "VBS isn't Python" :)

link|flag
6  
The error-handling aspect was the worst. Debugging a large ASP app built on VBS (crammed full of ON ERROR RESUME NEXT functions of course) was pure insanity. – Shog9 Jun 7 at 16:14
show 1 more comment
vote up 34 vote down

No answer about Cobol yet? :O

link|flag
9  
Probably because most people nowadays are smart enough to avoid it ;-) – Zifre Jun 7 at 16:05
4  
COBOL is nowhere near as bad as some of these others being mentioned. – John Saunders Jun 7 at 20:06
10  
Actually COBOL is quite a decent language. It was created and standardised before type checking was thought of. But it was the one of the first languages to have built in type checking and automatic type conversions within a program but no type checking on subroutine calls. It is still one of the very few languages that can do decimal arithmatic properly and its handling of structures was way ahead of its time. Modern COBOL is a pretty neat language, they made it fully OO with the addition of only three reserved words, and, it supports pointers and pointer arithmatic. – James Anderson Jun 8 at 2:37
8  
COBOL was busy being the punch line of a joke somewhere else... – thomasrutter Jun 9 at 2:39
6  
@John Saunders: other languages described here are just bad. COBOL is beautiful, elaborate, baroque in its terribleness. – John Pirie Jun 9 at 12:27
show 5 more comments
vote up 2 vote down

Smalltalk.

I had to learn it at the university. Hated every aspect of the language. Maybe our professors just made a dumb choice on the language implementation, but basically it worked like this:

  • There was no sourcecode you could browse. There was just a class-tree where you could create and edit the method implementations. No way to save the code other than to cut'n'paste them to a notepad. You could save sessions, but these are binary dumps.

  • The entire environment has been written in Smalltalk, and boy - was it slow. You could see the entire screen repaint every time you hit a key. The editor (that you had to use due to lack of load/save sourcecode) lacked basic edit-features like insert/override mode.

  • The language was pure in a way that it wasn't possible to terminate a loop early. All things that made programming easy and efficient are forbidden in the language.

  • Everything was an object. Override the comparison operator of a boolean and the entire system crashed.

link|flag
3  
Your first two complaints concern the environment and not the language. Most Smalltalks are nothing like that, and you're right that that kind of environment is a serious pain. Especially when trying to learn. Point 3 is something that a good approach to teaching the language would have shown you how to think differently about how programs should work. Why learn a new language if you're not going to learn to think in its style. Point 4 is a matter of taste. I'm sorry your professors weren't able to teach you how OO programming works. – PanCrit Jun 7 at 16:28
2  
Hi PanCrit: I already was a very good C++ programmer at the point when I had to learn smalltalk. For some reason however smalltalk tried to do evrything in a different way for no good reason (e.g. message passing syntax instead of method calls. In the end it was the same thing..) Btw: I did somme research and the environment I had to work with, and to my surprise it's still alive. It's called VisualWorks. You still can't save code but only save core-dump like structures (just checked). I wonder if nowadays the scrollbars and edit-windows behave as they should in the win32 world. – Nils Pipenbrinck Jun 7 at 16:59
8  
Complaining that Smalltalk has arbitrary differences from your preferred language does not make Smalltalk bad, particularly when Smalltalk came first. If you had learned Smalltalk before C++, you would probably have similar complaints about C++. – unknown (google) Jun 7 at 17:49
3  
The fact that Smalltalk scores -2 in a question about bad languages must mean it's pretty good! – Barry Brown Jun 9 at 0:37
show 3 more comments
vote up 29 vote down

MS Access Visual Basic for Applications (VBA) was also pretty bad. Access was bad altogether in that it forced you down a weak paradigm and was deceptively simple to get started, but a nightmare to finish.

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

IT baffles me sometimes to why a software company would develop its own scripting language to interface with their software, rather than building a strong API that can interface with your scripting language of choice. My vote goes to TransCAD's scripting language.

link|flag
7  
I guess it made sense back when there were no freely available and easy-to-integrate scripting languages -- wikipedia says TransCAD was first released in 1985, and that was the case at the time. – Alex Martelli Jun 7 at 15:46
show 3 more comments
vote up 30 vote down

Old-skool BASICs with line numbers would be my choice. When you had no space between line numbers to add new lines, you had to run a renumber utility, which caused you to lose any mental anchors you had to what was where.

As a result, you ended up squeezing in too many statements on a single line (separated by colons), or you did a goto or gosub somewhere else to do the work you couldn't cram in.

link|flag
43  
There was a renumbering utility? Man, that would have saved me some work back when I was 11. :) – rtperson Jun 7 at 15:46
3  
Some BASIC's had a renum command. For others the process could be truly atrocious--save your BASIC file out as ASCII, run the renumber tool on it as data, then reimport your new ASCII file as code. – Nosredna Jun 7 at 15:59
13  
Heh... I just used multiples of 100 for each line number, leaving plenty of room for inserting new lines... Then again, I moved on to better languages after cutting my teeth on BASIC. What a shock it was indeed to see other, similarly-impractical aspects of the language preserved in VB years later! That said, I still consider old-school BASIC a reasonably good language for beginners - it's simple, easy to use interactively, and line numbers actually do provide a reasonable abstraction for the program counter on the CPU - jumping from learning BASIC to learning an assembly language works well. – Shog9 Jun 7 at 16:09
3  
Anyone here remember programming BASIC on Apple computers and using all the wonderful Beagle Bros utilities? – Barry Brown Jun 7 at 18:02
4  
Standard practice was to increment line numbers by 10, so you had room to insert a few lines. If you need to insert just one line, you added 5. If you found you needed to insert another later, you add two or three, and start to get nervous... – T.E.D. Jun 9 at 12:39
show 12 more comments
vote up 15 vote down

TCL. It only compiles code right before it executes, so it's possible that if your code never went down branch A while testing, and one day, in the field it goes down branch A, it could have a SYNTAX ERROR!

link|flag
12  
This is true of most interpretive languages and not just Tcl. And while it's true, in practice it's not nearly as bad is you make it sound. Certainly, I wouldn't use an interpreted language for hyper-critical applications but for the vast majority of uses of this type of language it's not that big of a deal and can be virtually eliminated with proper testing. – Bryan Oakley Jun 7 at 16:03
1  
Exactly what other interpreted languages is it true for? I can't think of one. Most scripting languages completely parses the scripts before executing them. – Emil H Jun 7 at 16:19
2  
It's not up to the language--it's up to the implementation. JavaScript--probably the most-used scripting language in the world--is parsed in different ways depending on the browser or app that uses it. – Nosredna Jun 7 at 16:26
1  
Even if the interpreter parses the whole script file before executing it, 'include' statements still affect which other script files will get parsed, and that is determined at run-time. So the above statements are true even of such languages - it is possible that code path A in a certain file never gets parsed during testing because that file isn't included. – thomasrutter Jun 9 at 2:43
show 2 more comments
vote up 5 vote down

In the mid 90’s I worked in a small management consulting firm using a GIS product called MapInfo which had a weak scripting language called MapBasic.

I don’t remember the specifics, but basically at that time there were objects* which could only be instantiated when hard coded (as opposed to instantiating with variables). This was a total pain in that it appeared to do everything you needed done, until you actually attempted to implement. Implementation was either impossible or very kludge heavy.

I was a novice at that point and had a lot of difficulty a) predicting what could and could not be done, and b) explaining why to my non-programming manager. It was frustrating none the less.

There are a lot of languages and tools which are weak in certain areas, but after dealing with Map Basic, even Visual Basic 3.0 felt liberating!

*-I don’t remember if it was all objects or only certain ones.

link|flag
5  
I can't imagine Visual Basic feeling liberating after using any programming language, wow, it must have really sucked! – John Bellone Jun 7 at 16:28
show 2 more comments
vote up 13 vote down

Here is the contribution to my own question:

Origin LabTalk

My all-time favourite in this regard is Origin LabTalk. In LabTalk the maximum length of a string variable identifier is one character. That is, there are only 26 string variables at all. Even worse, some of them are used by Origin itself, and it is not clear which ones.

From the manual:

LabTalk uses the % notation to define a string variable. A legal string variable name must be a % character followed by a single alphabetic character (a letter from A to Z). String variable names are caseinsensitive. Of all the 26 string variables that exist, Origin itself uses 14.

Doors DXL

For me the second worst in my opinion is Doors DXL. Programming languages can be divided into two groups: Those with manual memory management (e.g. delete, free) and those with a garbage collector. Some languages offer both, but DXL is probably the only language in the world that supports neither. OK, to be honest this is only true for strings, but hey, strings aren't exactly the most rarely used data type in requirements engineering software.

The consequence is that memory used by a string can never be reclaimed and DOORS DXL leaks like sieve.

There are countless other quirks in DXL, just to name a few:

link|flag
1  
+1 on Doors DXL...what a bunch of crap thrown over the wall. – Kenny Jun 8 at 12:02
show 3 more comments
vote up 14 vote down

Visual Foxpro

link|flag
4  
Can you elaborate a bit on why? – Emil H Jun 7 at 14:27
3  
Well, there are things you could do in Foxpro (for DOS!) in one line of code that still you cant do in 5 lines of code in c#. – Binoj Antony Jun 8 at 7:52
1  
I half agree and half disagree. VFP tried to port the event model of the DOS product to Windows which was an epic fail IMO. That said, for a long time VFP was my Swiss army knife for doing database tasks. It was one of the first products that allowed one to easily interoperate among multiple databases. – Jeff Leonard Jun 8 at 21:44
1  
so funny, because my impression is that VFP has one of the most loyal developer bases of any lang/platform/environment. re: "easy to use wrong". Is there then, a benefit to making a language difficult? Raise the bar, get better oututs? – Cheeso Jun 9 at 12:08
2  
VFP is not that bad. Learning the syntax is a little difficult, but overall it's pretty good for a language. Shame MS dropped support for it. Lots of code to convert to another platform now. – dna123 Jun 9 at 19:18
show 10 more comments
vote up 8 vote down

the worst language i "worked" with, was "karol, the robot"—which was a programming language in german. and could do nothing more than move a robot on screen xD

shouldn't this be community wiki?

link|flag
1  
there's your ten points for mentioning the community wiki :) – MasterPeter Jun 7 at 15:40
1  
I tried Karel in high school, too. For its purpose (teaching about basic programming abstractions--loops, subroutines, etc.) it really wasn't bad--sort of a Pascal-based Logo (vs. a BASIC-based one like the original). Would I write an operating system in it? No. – Drew Hall Jun 7 at 18:42
show 3 more comments
prev 1 2 3 4

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