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 66 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 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
vote up 17 vote down

I think it is subjective - you can write good and bad code in pretty much any language. Spending most of my time with PHP, C and Objective C, I like to see brackets in code to make control structures, function definitions and such clear at a quick glance. As a result, I find languages like Python difficult to read, even though they are supposed to be easier to create clean code with through their requirement for tabs/whitespace.

Objective C has some nice features with the @property / @synthesize which gets rid of a lot of generic setter/getter code. Shortcuts like that are very handy and make code cleaner, and speed things up!

link|flag
vote up 15 vote down

whitespace

link|flag
vote up 10 vote down

(((((Lisp))))))

link|flag
14  
Unable to resolve symbol: Lisp in this context. Unmatched delimiter: ) – Kent Fredric Jan 5 '09 at 15:50
show 2 more comments
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 6 vote down

Ook!

link|flag
vote up 6 vote down

Not exactly a language but I find Regex very unfriendly to read.

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

I agree. VB is for me the most difficult language to read... even though it was designed to be exaclty the opposite

link|flag
vote up 5 vote down

I'd vote for APL.

Forth is a contender as well.

link|flag
vote up 5 vote down

This is C and it prints the words of 'first day of Christmas' (try it if you don't believe me). Any questions?

main(t,_,a )
char
*
a;
{
    			return!

0<t?
t<3?

main(-79,-13,a+
main(-87,1-_,
main(-86, 0, a+1 )


+a)):

1,
t<_?
main( t+1, _, a )
:3,

main ( -94, -27+t, a )
&&t == 2 ?_
<13 ?

main ( 2, _+1, "%s %d %d\n" )

:9:16:
t<0?
t<-72?
main( _, t,
"@n'+,#'/*{}w+/w#cdnr/+,{}r/*de}+,/*{*+,/w{%+,/w#q#n+,/#{l,+,/n{n+,/+#n+,/#;#q#n+,/+k#;*+,/'r :'d*'3,}{w+K w'K:'+}e#';dq#'l q#'+d'K#!/+k#;q#'r}eKK#}w'r}eKK{nl]'/#;#q#n'){)#}w'){){nl]'/+#n';d}rw' i;# ){nl]!/n{n#'; r{#w'r nc{nl]'/#{l,+'K {rw' iK{;[{nl]'/w#q#n'wk nw' iwk{KK{nl]!/w{%'l##w#' i; :{nl]'/*{q#'ld;r'}{nlwb!/*de}'c ;;{nl'-{}rw]'/+,}##'*}#nc,',#nw]'/+kd'+e}+;#'rdq#w! nr'/ ') }+}{rl#'{n' ')# }'+}##(!!/")
:
t<-50?
_==*a ?
putchar(31[a]):

main(-65,_,a+1)
:
main((*a == '/') + t, _, a + 1 )
:

0<t?

main ( 2, 2 , "%s")
:*a=='/'||

main(0,

main(-61,*a, "!ek;dc i@bK'(q)-[w]*%n+r3#l,{}:\nuwloca-O;m .vpbks,fxntdCeghiry")

,a+1);}
link|flag
6  
Yes, but you can write obfuscated code in any language. The question was about which languages come "pre-obfuscated". :-) – phyzome Oct 21 '08 at 2:20
show 3 more comments
vote up 4 vote down

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

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

Perl, especially when written by my old boss.

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

Brainfuck, the esoteric language in Klingon, the Shakespearian esoteric language...

As for "real" languages, I find curly brace languages the easiest to read, followed by languages that use keywords instead of braces (Ruby comes to mind, using things like END LOOP or something like that), followed by languages that use indentation for code blocks.

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

I find that it's easy to build systems that are hard to figure out in C++. Most of this is due to operator overloading; it's great for certain cases, but I've seen some class libraries that have used operators in really wrong ways. Templates also can uglify code a lot, although some of the type inference tweaks being added in C++ 0x will help (they overload "auto" to declare variables where the type comes from the initializing expression). If you're digging into an unfamiliar C++ system, it's essential to have some sort of good IDE with a cross-referencing database just to have a chance to decipher all the method references.

link|flag
vote up 3 vote down

I think it is ASP

link|flag
vote up 3 vote down

I vote for Malbolge

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

I suppose binary code.

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

Assuming non-malicious code, I can read C, Pascal, VB, Java, C#, python, C++, SML, Haskell without colour coding. I can't do the same for lisp or scheme; those ones need assistance from the editor. So they "win", as far as I'm concerned.

link|flag
vote up 1 vote down

rpg by far wins for me although it is getting better with rpgle and free format.

Here's a good example of an early version of rpg

link|flag
vote up 1 vote down

I second LISP. Had a class in college that used Scheme which is a LISP Dialect. The Polish (prefix) notation and seemingly infinite parenthesis make it a drastic departure from the C and Java I'm used to.

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

The Shakespeare Programming Language

link|flag
show 1 more comment
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

I would have to say COBOL. I've never actually programmed anything in it, but given examples like:

Multiply Price By Quantity Giving SubTotal
Multiply SubTotal By TaxPercent Giving TaxTotal
Add Subtotal To TaxTotal Giving Total

As opposed to

Subtotal = Price * QUantity
TaxTotal = SubTotal * TaxPercent
Total - SubTotal + TaxTotal

Or Even

Total = Price * Quantity + Price * Quantity * TaxPercent

I'm not sure how anybody thought COBOL was a good idea.

link|flag
show 3 more comments
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
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.