vote up 7 vote down star
4

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

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

I'd vote for APL.

Forth is a contender as well.

link|flag
vote up 3 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 15 vote down

whitespace

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

Perl is incomprehensible to me because it's a language I haven't learned, like Thai, Greek, or Klingon. Looks like cartoon characters swearing. :)

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

I think it is ASP

link|flag
vote up 7 vote down

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

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

Ook!

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