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

1 2 next
vote up 52 vote down check

I find it easier to read languages which use brackets for breaking up blocks of code. For example C/C++, C#, D, and Perl.

The language which is in common use today, that I really find difficult to understand, is shell scripting. Plus the keyword you use to end a construct isn't always the mirror of the beginning keyword. I don't think anyone would use it if it wasn't already so widely used.

READABLE:

Perl

if(     $anything == 1 ){
    # some code
}elsif( $anything == 2 ){
    # some code
}else{
    # some more code
}

UNREADABLE:

Shell

if [ $a == z* ] # File globbing and word splitting take place.
then
  if [[ $a == z* ]] # True if $a starts with an "z" (regex pattern matching).
  then
    echo do-something  # But only if both conditions are valid.
  fi  
fi

I don't know about you, but I keep wanting to end the if block like this:

if [ $Jack && $Beanstalk ]
then
   echo plant beanstalk
fee fi fo fum

Further

Those people who automatically say Perl is a terrible language, generally assume that it is unreadable because they take one look at the Regex sub-language, and assume there is no possible way to rewrite it in a cleaner way. Which is completely wrong. The first thing you must learn is of the /x modifier, which allows whitespace embedded in the Regex to be used to separate out different parts of the Regex.

So we can turn this:

/^([+-]?)(\d+\.\d+|\d+\.|\.\d+|\d+)([eE][+-]?\d+)?$/;

into this:

/
  ^
    ([+-]?)        # first, match an optional sign

    (              # then match integers or f.p. mantissas:
         \d+\.\d+  # mantissa of the form a.b
        |\d+\.     # mantissa of the form a.
        |\.\d+     # mantissa of the form .b
        |\d+       # integer of the form a
    )

    ([eE][+-]?\d+)?  # finally, optionally match an exponent
  $
/x;

Which I might add (as far as I know) is not available in any other general purpose Regular Expression librarys, accessible within other languages. So in other words if you are using another language you are stuck with the first form, or you have to write significantly more code to achieve the same ends, which will be error prone. See here for more information.

Actually Perl can be very powerful, imagine running arbitrary code, from within a Regex. Don't worry you're not allowed to use interpolation with this feature, by default. Also this feature, last I heard is experimental, although I would bet it will stay in the language in some form or another. I know for a fact, it is a feature of Perl 6.

$x =~ /(?{print "Hi Mom!";})/;       # matches,
                                     # prints 'Hi Mom!'

Yet another useful feature:

Named back-references

( copied directly from perldoc perlretut )

Perl 5.10 also introduced named capture buffers and named backreferences. To attach a name to a capturing group, you write either (?<name>...) or (?'name'...). The backreference may then be written as \g{name} . It is permissible to attach the same name to more than one group, but then only the leftmost one of the eponymous set can be referenced. Outside of the pattern a named capture buffer is accessible through the %+ hash.

Assuming that we have to match calendar dates which may be given in one of the three formats yyyy-mm-dd, mm/dd/yyyy or dd.mm.yyyy, we can write three suitable patterns where we use 'day', 'month' and 'year' respectively as the names of the buffers capturing the pertaining components of a date. The matching operation combines the three patterns as alternatives:

$fmt1 = '(?<year>\d\d\d\d)-(?<mon>\d\d)-(?<day>\d\d)';
$fmt2 = '(?<mon>\d\d)/(?<day>\d\d)/(?<year>\d\d\d\d)';
$fmt3 = '(?<day>\d\d)\.(?<mon>\d\d)\.(?<year>\d\d\d\d)';

for my $d qw( 2006-10-21 15.01.2007 10/31/2005 ){
    if ( $d =~ m{$fmt1|$fmt2|$fmt3} ){
        print "day=$+{day} month=$+{mon} year=$+{year}\n";
    }
}

prints:

day=21 month=10 year=2006
day=15 month=01 year=2007
day=31 month=10 year=2005

If any of the alternatives matches, the hash %+ is bound to contain the three key-value pairs.

Perl 6

If we take the number matching Regex from above and convert it to a Perl 6 Grammar, it becomes even easier to read.

Perl 6

grammar Date {
  rule year{  \d{4}   }
  rule day{   \d{1,2} }
  rule month{ \d{1,2} }

  rule ymd{ <year>-<month>-<day> }
  rule mdy{ <month>/<day>/<year> }
  rule dmy{ <day>.<month>.<year> }

  rule match{
     <(ymd)>
    |<(mdy)>
    |<(dmy)>
  }
}

Note: I probably have some mistakes in this last bit of code, due to the Perl 6 design changing, and because I also haven't written a lot of Perl 6 code yet. It is also a bit of a contrived example

You would also need to change the for loop also.

for [qw( 2006-10-21 15.01.2007 10/31/2005 )] -> $d {
    if ( $d =~ Date.match ){
        print "day=$<day> month=$<mon> year=$<year>\n";
    }
}

prints:

day=21 month=10 year=2006
day=15 month=01 year=2007
day=31 month=10 year=2005
link|flag
2  
I can do this whole post in one line : I love perl! Perl perl perl! A #1 go team hooyray we're the best! – Andrew Sep 29 '08 at 7:15
3  
This reads like more like a perl advertisement than an answer. Only the second block of code is relevant to the question. – orlandu63 May 25 at 16:11
show 4 more comments
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
vote up 0 vote down

i'd say assembly

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 can't believe MUMPS hasn't been mentioned yet!

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 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 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

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 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

Its got to be Whitespace

link|flag
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

Unlambda

Quoting the Unlambda Website:

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

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

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

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

I suppose binary code.

link|flag
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 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 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

regex by far.

<([A-Z][A-Z0-9]*)\b[^>]*>(.*?)</\1>

what is that?

edit: formatted regex to avoid markup munging

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

The Shakespeare Programming Language

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

Give a million monkeys a million years on a million compilers and one of them will come up with a useful application in LISP.

About half of the rest will generate compilable Perl. For me, Perl wins hands down because I'm just a coding monkey banging away on my keyboard.

link|flag
vote up 4 vote down

In farcical languages, Ook! and Brainfuck are at the top of the list.

In terms of real languages, I would say that Perl is definitely a top contender due to it's support of so many different syntax methods. But really, a lousy programmer can turn any language into unreadable crap.

link|flag
vote up 4 vote down

Piet. Hard to read, but easy to look at.

link|flag
vote up 3 vote down

I vote for Malbolge

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

Some that were forgotten:

By the way, have you ever had to write 'programs' for a single band Turing machine? A professor I had (in complexity theory) had us do that (with pen and paper of course). Not that fun, and not that readable either!

link|flag
vote up 65 vote down

APL wins hands down. It uses a notation that's not even part of a normal character set.

This is the game of Life in one line of APL:

life

(Stolen from http://www.catpad.net/michael/apl/ which is a nice article describing just how that one line of APL works.)

You really can't get more unreadable than that.

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

@Kibbee - The people who coded in assembler (the other choice of that era) thought COBOL was a great idea for the programmers who couldn't handle assembler. :P

My vote is for stuff like RegEx's or anything a programmer manages to code as unreadable be it C, Pascal, BASIC ... or even COBOL.

link|flag
vote up 0 vote down

it still depends on whoever is coding. I mean, someone somewhere in the world can still understand lolcode or brainfuck or haskell or whatever..

I still vote for brainfuck, though

link|flag
vote up 19 vote down

LOLCODE!

http://lolcode.com/

HAI
CAN HAS STDIO?
I HAS A VAR
GIMMEH VAR
IZ VAR BIGGER THAN 10?
YARLY
	BTW this is true
	VISIBLE "BIG NUMBER!"
NOWAI
	BTW this is false
	VISIBLE "LITTLE NUMBER!"
KTHX
KTHXBYE
link|flag
1  
I understood it pretty well. – lamcro Feb 25 at 13:19
2  
Readable, yet somehow still manages to be painful. – Jeffrey Hantin Apr 10 at 0:43
2  
Makes perfect sense to me. Compared to some things, that's positively pleasant. – Marcus Downing May 22 at 14:59
1  
I already see resumes: I has kitteh-fu skillz in lolcode. can has job ? – Stefano Borini Sep 16 at 22:30
show 2 more comments
1 2 next

Your Answer

Get an OpenID
or

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