vote up 6 vote down star
3

Excluding Whitespace, BrainF*ck (and all those other languages not designed for practical usage), and assembly, what do you think is the most difficult real programming language to write readable code in, and why?

I find that I'm very comfortable reading code with C/C++ style braces and brackets. I can easily scan a file for method and class definitions, however in a language which does not use braces I find it extremely hard to read, eg: BASIC variants, specifically Visual Basic.

flag
1  
Here's an old phrase for you: "One can write Fortran in any language." – Joel B Fant Oct 10 '08 at 16:12
show 1 more comment

48 Answers

prev 1 2
vote up 0 vote down

lisp-like languages really annoy me personally... as for intentionally unreadable languages my all time favorite is False, here's an example:

{
This one formats input and puts each line into a 4 columns wide row in an 
HTML-table. (Nice for automatically generated web-pages.)

Steinar Knutsen <sk@nvg.unit.no>
}

"<table>
"["<td>"[^$1_=~$[%$10=~]?][,]#%"</td>"]p:[^$1_=~]["<tr>
<td>",[^$1_=~$[%$10=~]?][,]#%"</td>"p;!p;!p;!"
"]#%"</table>
"
link|flag
vote up 0 vote down

JOVIAL - which is used in some military apps.

With this language you can redefine every single keyword to be represented by another word - so you could change the whole look of the language.

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

I'd have to agree with APL. I even had a separate keyboard, labeled with the APL chars for working in it.

But looking at some of the examples here, I think the ultimate winner is "anything that has to output web pages" - take the language of your choice, and embed javascript and HTML, and it's going to be unreadable.

link|flag
vote up 3 vote down

I suppose binary code.

link|flag
vote up 7 vote down

Even very well-written Scheme code can be extremely unreadable. For example, this snippet from a real-world Scheme application.

 ((n.lisp_token_pos_guess is to)
  ((year))
  ((p.lisp_token_pos_guess is sym)
   ((pp.lisp_token_pos_guess is sym)
    ((cardinal))
    ((lisp_num_digits < 4.6) ((year)) ((digits))))
   ((lisp_num_digits < 4.8)
    ((name < 2880)
     ((name < 1633.2)
      ((name < 1306.4) ((cardinal)) ((year)))
      ((year)))
     ((cardinal)))
    ((cardinal)))))))))

link|flag
8  
I have the source code of Skynet - I'll prove it. Here's the last page of the source: )))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) )))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) )))))))))))))))))))))))))))))))))))))))))))))))))))))))))))) – Alister Bulman Apr 10 at 0:17
show 3 more comments
vote up -1 vote down

Lisp is pretty bad. But of the popular ones, I think perl is worst.

link|flag
vote up 0 vote down

Unlambda

Quoting the Unlambda Website:

. . . the language was deliberately built to make programming painful and difficult . . .

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

A+. http://www.aplusdev.org/

You can see example code (for A+ and many other languages) here: 99 bottles

I use this to write trading systems. The code is utterly mind boggling at times. Definitely a WORN (Write Once Read Never) language. Would be interested to know if anyone else is using A+ or a similar APL derived language.

link|flag
vote up 0 vote down

Its got to be Whitespace

link|flag
vote up 0 vote down

Applescript (though actually it's more unwritable than unreadable).

TeX is particularly awful, it's a macro language whose macros influence their own lexer at runtime...

And in the realm of esoteric languages, I think Piet is not a bad one.

link|flag
vote up 0 vote down

It was said that FORTH was a write-only language. Of course, there's also BF, and APL, so that might not have been unique in that.

link|flag
vote up 3 vote down

APL is the definitely the answer to this question. it is SO unreadable that, as far as i know, you can't even represent it in HTML .. can anyone figure out:

alt text

??

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

I know many people will disagree, but I find functional languages like Haskell to be very unreadable. It can look clean at first, like the one line quicksort, but any real code gets messy.

I think the most readable language is Python. I have never written a line of it, but I can easily understand large projects written in it.

link|flag
vote up 0 vote down

I had to do some Prolog programming in college. Not exactly hard to understand the concept of how the "facts" work together, but to try and actually write some sort of useful program with it I think would be pretty hard.

I think it depends on the level of complexity of the program.

Like a 5 line BASIC hello world program is very simple, but a 500 BASIC program with subroutines and gotos all over the place would be a nightmare. But the same holds true for a C++ program with tons of polymorphism, inheritance, templates and operator overloading.

link|flag
vote up 0 vote down

I can't believe MUMPS hasn't been mentioned yet!

link|flag
vote up 0 vote down

Although I'm C++ programmer, after I once read pro AmigaE article, I realized, that braces are inferior to ENDFOR and alike statements. Compare:

while (foo) {
   bar;
}

with:

WHILE foo
   bar
ENDWHILE

Now some more complex example:

while (foo) {
   for(i=0; i<10; i++) {
      if(i%2) {
        print 1;
      } else {
        print 2;
      }
   }
}

vs.

WHILE (foo) {
   FOR(i=0; i<10; i++) {
      IF(i%2) {
        print 1;
      ELSE
        print 2;
      ENDIF
   ENDFOR
ENDWHILE

Imagine that between FOR, ENDFOR and other keyword pairs there is not one, but 100 lines. Is using ENDFOR-like keywords helpful? IMO it is.

I think that many C++ programmers, including my self, have something like "brace blindness", i.e. they don't read braces, but only the indentation. When there is some error reported, only then brain switches to "ok, lets parse braces now" mode.

Not only C++ suffers from this, but most of mainstream languages, like Java, Perl, PHP and so on.

link|flag
vote up 0 vote down

i'd say assembly

link|flag
vote up 0 vote down

I'm gonna go out on a limb here and say that Objective C is not very pretty, especially when you're first trying to pick it up. Eventually it becomes clear but out of all the languages I use on a regular to semi-regular basis, I tend to dread having to wade through Obj-C code the most.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

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