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 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 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 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 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 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 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 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 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 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 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 4 vote down

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

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

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

Made me love Obj-C.

link|flag
show 4 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 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 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 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 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 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
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 1 vote down

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

link|flag
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 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 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 5 more comments

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