LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 07-21-2011, 02:09 PM   #1
tinyTux
Member
 
Registered: Mar 2011
Location: Extended Memory
Distribution: Gentoo
Posts: 64

Rep: Reputation: 9
Worst Language Ever


What's the worst programming language you've ever coded in, and why? Standards can be objective or subjective, but it has to be a language you've actually done at least some coding in: not, for example, "I didn't want to learn this language because it was too complicated for me".

Personally, I'd have trouble picking one because most of the languages I've learned are on the whole not too bad, at least given their underlying goals and assumptions.
 
Old 07-21-2011, 02:10 PM   #2
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,249

Rep: Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323
Definitely COBOL.

Last edited by dugan; 07-21-2011 at 02:11 PM.
 
Old 07-21-2011, 02:12 PM   #3
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Microsoft Basic V2, that is the version that was used on the Commodore C64.
 
Old 07-21-2011, 02:25 PM   #4
raconteur
Member
 
Registered: Dec 2007
Location: Slightly left of center
Distribution: slackware
Posts: 276
Blog Entries: 2

Rep: Reputation: 44
I agree with dugan, COBOL was the worst.
I'm finding C# to be a very close second.
 
Old 07-21-2011, 02:37 PM   #5
dugan
LQ Guru
 
Registered: Nov 2003
Location: Canada
Distribution: distro hopper
Posts: 11,249

Rep: Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323Reputation: 5323
Quote:
Originally Posted by dugan View Post
Definitely COBOL.
Okay, I've thought about it and I'm changing my answer.

It's JCL.

As bad as COBOL is, it only comes close to JCL in badness.

Last edited by dugan; 07-21-2011 at 02:39 PM.
 
Old 07-21-2011, 02:49 PM   #6
PrinceCruise
Member
 
Registered: Aug 2009
Location: /Universe/Earth/India/Pune
Distribution: Slackware64 -Current
Posts: 890

Rep: Reputation: 186Reputation: 186
2)C# when I was in college, not utterly bad but I had hard time dealing with my logic on it.

1)COBOL on AS400 platform for a short period of time, Horrible I say.
 
Old 07-21-2011, 02:51 PM   #7
szboardstretcher
Senior Member
 
Registered: Aug 2006
Location: Detroit, MI
Distribution: GNU/Linux systemd
Posts: 4,278

Rep: Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694Reputation: 1694
Im torn between saying LISP or FORTRAN.

I despise them equally I guess.
 
Old 07-21-2011, 03:06 PM   #8
markush
Senior Member
 
Registered: Apr 2007
Location: Germany
Distribution: Slackware
Posts: 3,979

Rep: Reputation: Disabled
Visual Basic.

Markus
 
1 members found this post helpful.
Old 07-21-2011, 03:27 PM   #9
ta0kira
Senior Member
 
Registered: Sep 2004
Distribution: FreeBSD 9.1, Kubuntu 12.10
Posts: 3,078

Rep: Reputation: Disabled
IDL is a pretty hideous language, especially if you have formal knowledge of linear algebra. If autoconf counts, maybe that will be my vote, instead.

I went through the following transition of hating languages, each supplanted upon learning the next one:

Java -> R -> MATLAB -> IDL

Who's next?! I'm actually somewhat alright with R now.
Kevin Barry
 
Old 07-21-2011, 03:31 PM   #10
Snark1994
Senior Member
 
Registered: Sep 2010
Distribution: Debian
Posts: 1,632
Blog Entries: 3

Rep: Reputation: 346Reputation: 346Reputation: 346Reputation: 346
Well, it probably doesn't count due to the fact it wasn't designed for general use, but "brainf***" must surely be in contention

Last edited by Snark1994; 07-21-2011 at 03:33 PM.
 
Old 07-21-2011, 03:46 PM   #11
PrinceCruise
Member
 
Registered: Aug 2009
Location: /Universe/Earth/India/Pune
Distribution: Slackware64 -Current
Posts: 890

Rep: Reputation: 186Reputation: 186
Quote:
Originally Posted by Snark1994 View Post
Well, it probably doesn't count due to the fact it wasn't designed for general use, but "brainf***" must surely be in contention
I'd never heard of that before, needa check that.
 
Old 07-21-2011, 04:08 PM   #12
SL00b
Member
 
Registered: Feb 2011
Location: LA, US
Distribution: SLES
Posts: 375

Rep: Reputation: 112Reputation: 112
Assembler. <shudder>

I'm surprised JCL got a mention. I've always found it to be very easy.
 
Old 07-21-2011, 05:15 PM   #13
Sergei Steshenko
Senior Member
 
Registered: May 2005
Posts: 4,481

Rep: Reputation: 454Reputation: 454Reputation: 454Reputation: 454Reputation: 454
Quote:
Originally Posted by szboardstretcher View Post
Im torn between saying LISP or FORTRAN.

I despise them equally I guess.
LISP is actually a pretty elegant language - opposed to Fortran. One begins to understand LISP elegance after learning how things are done "under the hood", e.g. after learning what AST (Abstract Syntax Tree) is.
 
Old 07-21-2011, 05:17 PM   #14
Sergei Steshenko
Senior Member
 
Registered: May 2005
Posts: 4,481

Rep: Reputation: 454Reputation: 454Reputation: 454Reputation: 454Reputation: 454
Quote:
Originally Posted by ta0kira View Post
IDL is a pretty hideous language, especially if you have formal knowledge of linear algebra. If autoconf counts, maybe that will be my vote, instead.

I went through the following transition of hating languages, each supplanted upon learning the next one:

Java -> R -> MATLAB -> IDL

Who's next?! I'm actually somewhat alright with R now.
Kevin Barry
"R" is a pretty decent language - though I didn't have a chance to really code in it. Matlab (and GNU Octave) is much worse, though GNU Octave is now one of my everyday languages.
 
Old 07-21-2011, 05:19 PM   #15
Sergei Steshenko
Senior Member
 
Registered: May 2005
Posts: 4,481

Rep: Reputation: 454Reputation: 454Reputation: 454Reputation: 454Reputation: 454
Quote:
Originally Posted by SL00b View Post
Assembler. <shudder>

...
Why ? I.e. not that much abstraction (though there is a high level assembly), but in the end the code has to reach HW. I.e. someone has to understand in detail how HW works, and the only alternative to assembly is machine code which is worse.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Worst Distro Ever Completely Clueless Linux - General 309 03-12-2022 05:51 PM
Is Assembly Language considered a Structured Language? theKbStockpiler Programming 4 01-30-2011 09:09 AM
[SOLVED] Can the language of fedora boot message change to other language, zh_CN,e.g.? jimtony Fedora 2 01-11-2011 03:03 AM
can't differentiate system language from keyboard language? lilou_b Linux - Newbie 3 04-14-2010 05:47 PM
Good linux chinese language language program? darsunt Linux - Software 1 04-10-2009 12:06 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 05:27 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration