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

1 2 3 4 next
vote up 150 vote down check

PHP (In no particular order)

  • Inconsistent function names and argument orders
    • Because there are a zillion functions, each one of which seems to use a different naming convention and argument order. "Lets see... is it foo_bar or foobar or fooBar... and is it needle, haystack or haystack, needle?" The PHP string functions are a perfect example of this. Half of them use str_foo and the other half use strfoo.
  • Non-standard date format characters
    • Take j for example
      • In UNIX (which, by the way, is what everyone else uses as a guide for date string formats) %j returns the day of the year with leading zeros.
      • In PHP's date function j returns the day of the month without leading zeros.
  • Still No Support for Apache 2.0 MPM
    • It's not recommended.
    • Why isn't this supported? "When you make the underlying framework more complex by not having completely separate execution threads, completely separate memory segments and a strong sandbox for each request to play in, feet of clay are introduced into PHP's system." Link So... it's not supported 'cause it makes things harder? 'Cause only the things that are easy are worth doing right? (To be fair, as Emil H pointed out, this is generally attributed to bad 3rd-party libs not being thread-safe, whereas the core of PHP is.)
  • No native Unicode support
    • Native Unicode support is slated for PHP6
    • I'm sure glad that we haven't lived in a global environment where we might have need to speak to people in other languages for the past, oh 18 years. Oh wait. (To be fair, the fact that everything doesn't use Unicode in this day and age really annoys me. My point is I shouldn't have to do any extra work to make Unicode happen. This isn't only a PHP problem.)

I have other beefs with the language. These are just some. Jeff Atwood has an old post about why PHP sucks. He also says it doesn't matter. I don't agree but there we are.

link|flag
31  
-1 I dislike PHP's schizophrenic naming conventions, but at the end of the day, so what? Also, are a 'zillion functions' that bad a thing? Choice makes a language work. IDEs exists so we don't have to remember function names. And money is best spent on other things, like beer. – karim79 Jun 7 at 18:11
46  
I disagree. It makes PHP horrible to program in. Also the multiple frameworks that exist creates huge confusion. Search here and see how many results there are about choosing the right PHP framework. – the_drow Jun 7 at 18:58
14  
The sad thing is that your criticisms are so true and yet people still use the language. – Jim Puls Jun 7 at 19:47
19  
I disagree. Sure many of the functions are schizophrenically named, but (1) the online documentation is stellar and (2) if you've worked in the language for a reasonable amount of time you remember their names anyway. This is a complaint I see a lot from PHP newbies, but rarely from PHP vets. – Bob Somers Jun 7 at 20:23
25  
@Bob, having spent practically no time in PHP I have no opinion on the language. Having said that your defense of the criticism is ridiculous. The main criticism is that functions do not follow a consistent naming convention, and your response is, "you just get used to the inconsistancy". The objective of this question is to learn from 'mistakes' in previous languages, and any barrier to learning and remembering, without any sort of reasonable gain should be considered a mistake – Nathan Koop Jun 7 at 20:48
show 17 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
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 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 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 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 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 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 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 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 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 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 7 vote down

First, a few caveats: I tend to give a pass to languages that serve their intended purpose well enough, but get shoehorned by the corporate world into doing more than their designers intended. For that reason, I give a pass to VB and its VB-office variants. For quick prototyping, VB was hard to beat. It failed massively when people tried to use it for enterprise-level work. Same for Perl, which is a great scripting utility which somehow got promoted to the CGI language du jour back in the day.

But a language that fails to meet expectations, even on its own terms? For me, that's no contest: JavaScript, for three big reasons:

  1. lack of decent debugging capabilities (Firebug helps, but it's not enough),
  2. the way it simply halts whenever there's an error, forcing the programmer to add alert("in functionX") just to make sure you made it to functionX, and
  3. its infuriatingly obscure error messages.

And if I were allowed to choose a framework, it's likewise an easy choice: JSF and IceFaces.

link|flag
17  
You're complementing VB while dissing JS? You, sir, are mad... – Shog9 Jun 7 at 16:11
1  
PHP at least has a reference manual. – too much php Jun 9 at 2:44
1  
@too much PHP: Javascript has a reference manual (ISO/IEC 16262). The catch is that none of the implementations seem to implement it completely, or even similarly! – R. Bemrose Jun 9 at 13:57
1  
I'm right there with you with Javascript. It's a love/hate relationship though. I hate it for the reasons you state. But at the same time, I use it all the time anyway because of what it can do for a website. I mean, just think of how much would be missing from StackOverflow without it... – Steve Wortham Jun 10 at 21:37
1  
@Breton - Firebug has its good points and its bad points. The console is fantastic. The ability to inspect your HTML and CSS and change things on the fly is equally great. But my experience with stepping through its JS debugger has been meh at best. My last experience with it, a few months ago, it missed breakpoints, stepped through lines of code that were not there, etc. After a while, I gave up on the script debugger and stuck with the console. – rtperson Jun 11 at 19:01
show 4 more comments
vote up 16 vote down

Objective-C.

The annotations are confusing, using brackets to call methods still does not compute in my brain, and what is worse is that all of the library functions from C are called using the standard operators in C, -> and ., and it seems like the only company that is driving this language is Apple.

I admit I have only used the language when programming for the iPhone (and looking into programming for OS X), but it feels as if C++ were merely forked, adding in annotations and forcing the implementation and the header files to be separate would make much more sense.

link|flag
25  
Objective C was created while C++ was still in its infancy (as C with Classes) and there is not really any relationship between them. Obj-C took the Smalltalk way of doing OO; C++ stuck closer to Simula. The syntax takes a while to get used to, but if you keep an open mind there is a lot of power in the language too (I wrote up one technique I used here: metatechnology.blogspot.com/2009/04/…). – Phil Nash Jun 7 at 16:53
6  
I love Objective-C. It’s a very nice blend of hands-on-hardware C and higher-level dynamic language. The syntax takes time, but the named parameters are great for readability. – zoul Jun 7 at 17:38
1  
I used the original 1980's Objective-C from StepStone (Brad Cox's) company, and I loved it, it was a huge advance over C and actually a very simple extension to C. Moving to C++ a year or two later was quite painful, due to its complexity and its immature and incompatible implementations. – Jim Ferrans Jun 7 at 20:05
2  
I like C, and I like dynamic languages, but I find it difficult to like Objective-C. I expected to love it, but I ended up just finding it difficult to read. – Nosredna Jun 8 at 2:25
3  
It's just that the more I use Python, the more I like it. The more I use Objective-C, the less I like it. – Nosredna Jun 11 at 0:15
show 6 more comments
vote up 3 vote down

Oberon.

In our first year at university, everyone had to program in Oberon. I think the idea was to make sure nobody had a head start. The language was tied to the Oberon OS/GUI which was horrible! I'm not sure if anything changed, but that was definitely my worst programming experience ever.

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

The worse language I've ever seen come from the tool praat, which is a good audio analysis tool. It does a pretty good job until you use the script language. sigh bad memories.

Tiny praat script tutorial for beginners

  • Function call

    We've listed at least 3 different function calling syntax :
    • The regular one

      string = selected("Strings")

      Nothing special here, you assign to the variable string the result of the selected function. Not really scary... yet.

    • The "I'm invoking some GUI command with parameters"

      Create Strings as file list... liste 'path$'/'type$'

      As you can see, the function name start at "Create" and finish with the "...". The command "Create Strings as file list" is the text displayed on a button or a menu (I'm to scared to check) on praat. This command take 2 parameters liste and an expression. I'm going to look deeper in the expression 'path$'/'type$'

      Hmm. Yep. No spaces. If spaces were introduced, it would be separate arguments. As you can imagine, parenthesis don't work. At this point of the description I would like to point out the suffix of the variable names. I won't develop it in this paragraph, I'm just teasing.

    • The "Oh, but I want to get the result of the GUI command in my variable"

      noliftt = Get number of strings
      Yes we can see a pattern here, long and weird function name, it must be a GUI calling. But there's no '...' so no parameters. I don't want to see what the parser looks like.
  • The incredible type system

    (AKA Haskell and OCaml, praat is coming to you)
    • Simple natives types

      windowname$ = left$(line$,length(line$)-4)

      So, what's going on there? It's now time to look at the convention and types of expression, so here we got :

      • left$ :: (String, Int) -> String
      • lenght :: (String) -> Int
      • windowname$ :: String
      • line$ :: String
      As you can see, variable name and function names are suffixed with their type or return type. If their suffix is a '$', then it return a string or is a string. If there is nothing it's a number. I can see the point of prefixing the type to a variable to ease implementation, but to suffix, no sorry, I can't

    • Array type

      To show the array type, let me introduce a 'tiny' loop :
      
          for i from 1 to 4
              Select... time time
              bandwidth'i'$ = Get bandwidth... i
              forhertz'i'$ = Get formant... i
          endfor
          

      We got i which is a number and... (no it's not a function)
      bandwidth'i'$
      What it does is create string variables : bandwidth1$, bandwidth2$, bandwidth3$, bandwidth4$ and give them values. As you can expect, you can't create two dimensional array this way, you must do something like that : band2D__'i'__'j'$

    • The special string invocation

      outline$ = "'time'@F'i':'forhertznum'Hz,'bandnum'Hz, 'spec''newline$'" outline$ >> 'outfile$'

      Strings are weirdly (at least) handled in the language. the '' is used to call the value of a variable inside the global "" string. This is weird. It goes against all the convention built into many languages from bash to PHP passing by the powershell. And look, it even got redirection. Don't be fooled, it doesn't work like in your beloved shell. No you have to get the variable value with the ''

    • Da Wonderderderfulful execution model

      I'm going to put the final touch to this wonderderderfulful presentation by talking to you about the execution model. So as in every procedural languages you got instruction executed from top to bottom, there is the variables and the praat GUI. That is you code everything on the praat gui, you invoke commands written on menu/buttons.

      The main window of praat contain a list of items which can be :

      • files
      • list of files (created by a function with a wonderderfulful long long name)
      • Spectrogramm
      • Strings (don't ask)
      So if you want to perform operation on a given file, you must select the file in the list programmatically and then push the different buttons to take some actions. If you wanted to pass parameters to a GUI action, you have to follow the GUI layout of the form for your arguments, for example "To Spectrogram... 0.005 5000 0.002 20 Gaussian " is like that because it follows this layout:

    Needless to say, my nightmares are filled with praat scripts dancing around me and shouting "DEBUG MEEEE!!".

    More information at the praat site, under the well-named section "easy programmable scripting language"

  • link|flag
    1  
    Indeed, Praat scripts are horrible. – christoffer Jun 7 at 17:57
    37  
    +1 just for the "You make kitty scared" – Pim Jager Jun 7 at 18:41
    1  
    the_drow > Oh yes, and I didn't even speak about the GUI description part, to allow the creation of "easy to use" forms. There's also the how to fill the "Very Long Function Name..." parameters which had to respect the layout of the form "from left to right, top to bottom". – SuperBloup Jun 7 at 19:34
    1  
    +1 Wow ! In the description on the "Controlling the user" (?) command, if this : "This example uses several tricks. A useful one is seen with number_of_channels: this is at the same time the value that is passed to optionMenu (and therefore determines the setting of the "Number of channels" menu when the window appears) and the name of the variable in which the user's chosen value of "Number of channels" is stored (because "number_of_channels" is what you get by replacing the spaces in "Number of channels" with underscores and turning its first letter to lower case." – Sylvain Jun 7 at 20:25
    1  
    Actually appending $ to variables and functions which are/return strings was in Spectrum Basic. Assembly subroutines with CHR$(), anyone? – Anton Tykhyy Jun 7 at 20:29
    show 4 more comments
    vote up 1 vote down

    Its VB6 NOOOOOOOOOOOOOOOOOO!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! You end up like Winston Smith in the ending of 1984....

    link|flag
    vote up 14 vote down
    HAI
    CAN HAS STDIO?
    VISIBLE "HAI WORLD!"
    KTHXBYE
    

    Seriously, the worst programming language ever is that of Makefiles. Totally incomprehensible, tabs have a syntactic meaning and not even a debugger to find out what's going on.

    link|flag
    3  
    LOLCODE is da next RoR killa! :D – Arnis L. Jun 7 at 16:40
    4  
    any environment where the behaviour hinges on the particulars of the whitespace has to be at the top of the list! – JustJeff Jun 7 at 17:55
    7  
    So that's Python and F# screwed then. – Earwicker Jun 7 at 18:31
    1  
    Oh, man. About two years ago, I tried to suggest a "funny" syntax addition (since the grammar was missing an entire genre of lolcat sentences!!1), and it got vetoed because (I kid you not) that functionality already existed with different syntax. I still can't wrap my head around people taking that "language" seriously. – ojrac Jun 11 at 2:36
    show 4 more comments
    vote up 7 vote down

    For me the worst experience which tainted my view of the language was Perl. I was asked to support a bunch of perl scripts that have been "supported" by other people who promptly left the company few months after being asked to support it. While the language may be ok, it allows the code to become unreadable and almost unsupportable very quickly (unless only 1 person ever touches them). It was a mess of regexp, pseudo objects, single letter variables and function names. It quickly led me to rewrite it all in python and scrap perl completely (it was that or me quitting). The python version was so much more usable and supportable that 10 years later it is still in use and from what I hear no one is allowed to use Perl at that company again.

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

    The worst two languages I've worked with were APL, which is relatively well known for languages of its age, and TECO, the language in which the original Emacs was written. Both are notable for their terse, inscrutable syntax.

    APL is an array processing language; it's extremely powerful, but nearly impossible to read, since every character is an operator, and many don't appear on standard keyboards.

    TECO had a similar look, and for a similar reason. Most characters are operators, and this special purpose language was devoted to editing text files. It was a little better, since it used the standard character set. And it did have the ability to define functions, which was what gave life to emacs--people wrote macros, and only invoked those after a while. But figuring out what a program did or writing a new one was quite a challenge.

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

    If we ask ourselves this question X years down the line (X = 10 or 20 or ?), we would all say in chorus that "all the languages of the 20th century sucked". Such would be the paradigm shift that we would be doing things in a much different way ... though I cant visualize how !

    link|flag
    7  
    I really doubt that they will say that either C or lisp sucked. Now then, if given 1990 era C++ they would indeed say that that C++ sucked. – Joshua Jun 8 at 2:46
    show 3 more comments
    vote up 17 vote down

    PROGRESS 4GL (apparently now known as "OpenEdge Advanced Business Language").

    PROGRESS is both a language and a database system. The whole language is designed to make it easy to write crappy green-screen data-entry screens. (So start by imagining how well this translates to Windows.) Anything fancier than that, whether pretty screens, program logic, or batch processing... not so much.

    I last used version 7, back in the late '90s, so it's vaguely possible that some of this is out-of-date, but I wouldn't bet on it.

    • It was originally designed for text-mode data-entry screens, so on Windows, all screen coordinates are in "character" units, which are some weird number of pixels wide and a different number of pixels high. But of course they default to a proportional font, so the number of "character units" doesn't correspond to the actual number of characters that will fit in a given space.
    • No classes or objects.
    • No language support for arrays or dynamic memory allocation. If you want something resembling an array, you create a temporary in-memory database table, define its schema, and then get a cursor on it. (I saw a bit of code from a later version, where they actually built and shipped a primitive object-oriented system on top of these in-memory tables. Scary.)
    • ISAM database access is built in. (But not SQL. Who needs it?) If you want to increment the Counter field in the current record in the State table, you just say State.Counter = State.Counter + 1. Which isn't so bad, except...
    • When you use a table directly in code, then behind the scenes, they create something resembling an invisible, magic local variable to hold the current cursor position in that table. They guess at which containing block this cursor will be scoped to. If you're not careful, your cursor will vanish when you exit a block, and reset itself later, with no warning. Or you'll start working with a table and find that you're not starting at the first record, because you're reusing the cursor from some other block (or even your own, because your scope was expanded when you didn't expect it).
    • Transactions operate on these wild-guess scopes. Are we having fun yet?
    • Everything can be abbreviated. For some of the offensively long keywords, this might not seem so bad at first. But if you have a variable named Index, you can refer to it as Index or as Ind or even as I. (Typos can have very interesting results.) And if you want to access a database field, not only can you abbreviate the field name, but you don't even have to qualify it with the table name; they'll guess the table too. For truly frightening results, combine this with:
    • Unless otherwise specified, they assume everything is a database access. If you access a variable you haven't declared yet (or, more likely, if you mistype the variable name), there's no compiler error: instead, it goes looking for a database field with that name... or a field that abbreviates to that name.

    The guessing is the worst. Between the abbreviations and the field-by-default, you could get some nasty stuff if you weren't careful. (Forgot to declare I as a local variable before using it as a loop variable? No problem, we'll just randomly pick a table, grab its current record, and completely trash an arbitrarily-chosen field whose name starts with I!)

    Then add in the fact that an accidental field-by-default access could change the scope it guessed for your tables, thus breaking some completely unrelated piece of code. Fun, yes?

    They also have a reporting system built into the language, but I have apparently repressed all memories of it.

    When I got another job working with Netscape LiveWire (an ill-fated attempt at server-side JavaScript) and classic ASP (VBScript), I was in heaven.

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

    I really don't like Visual Basic, even the .NET versions. Frankly, I find the core of the language way to verbose.

    For example:

    If condition1 = condition2 Then
      ...
    Else If condition1 > condition2 Then
      ...
    End If
    
    Public Function SomeFunction(ByVal arg1 As String, ByVal arg2 As Integer) As String
      ...
    End Function
    

    But in C#:

    if (condition1 == condition2) {
      ... }
    else if (condition1 == condition2) {
      ... }
    
    Public string SomeFunction(string arg1, int arg2){
      ...
    }
    

    And obviously many other languages like F#, Python, etc. are much less verbose. I honestly feel like it takes me twice as long to use VB than other languages because of this.

    I know this is quite a shallow answer, in part because it doesn't address some of the language concerns (like PHP's over use of global functions). But from a humanistic, 'experience-oriented' perspective, VB simply makes me grumpy.

    link|flag
    1  
    I still don't see the problem. Sure, VB is verbose but this is compensated by the reduced redundant parentheses and braces, and that alone is a huge gain. Done well, VB adds clarity to the code. I have to admit that some of the new things (statement lambda) have become too verbose indeed. But other than that, the language's verbosity is just fine with me. – Konrad Rudolph Jun 8 at 16:37
    1  
    Delphi is worse.. if ( condition ) then do begin .. end else begin .. end. Makes me grumpy too. – Blorgbeard Jun 30 at 8:40
    1  
    @Blorgbeard: Parentheses and begin/end are optional for simple statements and there's no "do" – pbz Jun 30 at 22:34
    show 2 more comments
    vote up 2 vote down

    CodeGear Delphi

    Its really not the language I disliked, but the IDE: CodeGear RAD Studio for Delphi. This is easily the worst, most buggy, crash-happy IDE I've ever used. Me and the other Delphi programmers would routinely lose hours of development time everyday because the IDE would crash or freeze.

    After we installed CodeRush, the application became virtually unsuable. It crashed in regular 5-15 minute intervals, even without user input. Even worse, mysterious errors were triggered by basic debugging, such as hitting a breakpoint (routinely, the debugger would hit a breakpoint and simply freeze in its tracks on a trivial line, like a variable assignment. Nothing you could do would make it proceed any further). If you left the program alone, it would sit stable for up to a half hours before throwing some kind of memory exception.

    So, after we'd spent thousands of dollars on licenses CodeGear RAD Studio, no one wanted to use it. By the time I left the company, all of our Delphi projects were coded with VIM instead.

    link|flag
    4  
    Doesn't answer the question. The OP was asking about bad languages, not bad IDEs. – Joe White Jun 9 at 1:14
    2  
    Environment <> Language – Gerard Jun 9 at 3:36
    show 2 more comments
    vote up 2 vote down

    "Visual C++".... So much legacy code interweaved.... everywhere.

    Made me love Obj-C.

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

    I find myself avoid having to use VBScript/Visual Basic 6 the most.

    I use primarily C++, javascript, Java for most tasks and dabble in ruby, scala, erlang, python, assembler, perl when the need arises.

    I, like most other reasonably minded polyglots/programmers, strongly feel that you have to use the right tool for the job - this requires you to understand your domain and to understand your tools.

    My issue with VBscript and VB6 is when I use them to script windows or office applications (the right domain for them) - i find myself struggling with the language (they fall short of being the right tool).

    VBScript's lack of easy to use native data structures (such as associative containers/maps) and other quirks (such as set for assignment to objects) is a needless and frustrating annoyance, especially for a scripting language. Contrast it with Javascript (which i now use to program wscript/cscript windows and do activex automation scripts) which is far more expressive. While there are certain things that work better with vbscript (such as passing arrays back and forth from COM objects is slightly easier, although it is easier to pass event handlers into COM components with jscript), I am still surprised by the amount of coders that still use vbscript to script windows - I bet if they wrote the same program in both languages they would find that jscript works with you much more than vbscript, because of jscript's native hash data types and closures.

    Vb6/VBA, though a little better than vbscript in general, still has many similar issues where (for their domain) they require much more boiler plate to do simple tasks than what I would like and have seen in other scripting languages.

    link|flag
    show 4 more comments
    vote up -1 vote down

    LISP

    Maybe there is nothing wrong with the language but it is just beyond me.

    link|flag
    10  
    There's nothing wrong with Lisp. Approach it with a clear mind, grasshopper. – David Thornley Jun 8 at 16:05
    3  
    Lisp is very hard to pick up if you are used to non-functional languages. Stick with it. It will open your mind. – T.E.D. Jun 9 at 12:50
    show 1 more comment
    vote up 0 vote down

    Granted, I don't have that much experience with different languages, but I gotta say Python. Even though the language it self is okay, I just hate the " " != "\t" etc. indents. Even though the idea of "automatic" scope ending is fine, this just lead to too many errors / time spent pressing space 200 times to use other peoples code :(

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

    DOS Batch files. Not sure if this qualifies as programming language at all. It's not that you can't solve your problems, but if you are used to bash.

    Just my two cents.

    link|flag
    8  
    variables + if + goto == Turing complete – guns Jun 7 at 19:38
    5  
    @Andrei We get it you do not like PHP, but you do not have to add your preference to every answer. – daub815 Jun 8 at 2:48
    show 2 more comments
    vote up 4 vote down

    System RPL, used by HP 48, 49 and 50 graphing scientific calculators. There were times it seemed to me that the compiler actually had produce a higher-level language for the processor to execute.

    link|flag
    show 2 more comments
    1 2 3 4 next

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