Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There is an uncountable sum of programming languages out there. They obviously all have their pro's and con's - but why can't there be one to "beat them all"?

The main part of a programming language is its syntax and what's possible with it. The rest are usually only a bunch of libraries, frameworks and extensions wrapped around it.

So couldn't you combine all the great aspects and experiences gained from the thousands of programming languages out there to build one with a syntax that fits every task?

Wouldn't it be better having only one programming language? I see only problems with the current amount of the ones in use.

Why can't there be a perfect language when thinking of syntax, constructs and typing?

share|improve this question
39  
I believe this is a real question, a fundamental question of programming language design. OP is not asking what the ultimate programming language would be (which is probably unanswerable), but whether one is possible (which is answerable, at least in part). – David Thornley Mar 22 '10 at 21:30
14  
There's no such thing as a perfect anything. – gnovice Mar 22 '10 at 21:32
12  
Just like natural languages. You'd think that English is the ultimate language, easy to learn, everyone likes it... Well, visit France man.. Try to persuade a McDonald's clerk in Paris to speak English for 45 minutes and think about world peace again. – Ekin Koc Mar 22 '10 at 21:32
3  
@Ekin: English is extremely inconsistent, most English speakers think it is easy to learn because it was their first language and they are so used to its flaws they forget they exist – Casebash Mar 23 '10 at 0:29
58  
"Why can’t there be an “ultimate” programming language?" - Because Chuck Norris is busy – Adam Davis Mar 24 '10 at 17:26
show 14 more comments

closed as not constructive by Tim, Bo Persson, Devon_C_Miller, Mark, Graviton Jan 17 at 5:58

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

35 Answers

1 2
  • Weakly typed languages like JavaScript and PHP suck as they are really error prone.
  • Statically typed languages like C# suck as they are unnecessarily strict and lead to casting and more casting.
  • Specialized languages like SQL or RegExp suck because they are not powerful enough to implement a WebServer.
  • Generic languages like C++ suck because it's too complicated to do simple stuff like parsing some text with them.
  • Compiled languages suck because deployment is too complicated and changes are too expensive.
  • Interpreted languages suck because they are really slow at least on their first run before the JITter kicks in.
  • High Level languages like Visual Basic for .NET suck because it's not possible or really hard to implement a graphics card driver in them.
  • Low Level Languages like x86-64 assembler suck because it takes dozens of lines of code to create a simple UI in them.
  • Object Oriented languages suck for financial calculations because we need too much boilerplate code and unnecessary stuff like classes for simple stuff like Conway's Game of Life which shouldn't need more than 1 line of code.
  • Functional languages suck because it's hard to model relations and enforce constraints and state.

On a related note, why do we need dozens of different Screwdrivers?

share|improve this answer
8  
really nice answer. Wish I could upvote more than once (even though it's CW – Samuel Carrijo Mar 22 '10 at 21:48
31  
Indeed, most all-in-one screwdrivers sold on TV are of terrible quality. ;) – Matt Olenik Mar 22 '10 at 21:49
41  
I don't see LOLCODE in that list... is that the ultimate language? – Martin Mar 22 '10 at 22:54
6  
@Matt: Worse yet, all-in-one screwdrivers aren't. I have yet to find one that can work on eyeglasses screws, #3 Philips, hex heads, deeply recessed screws, screws mounted near a wall, and screws in confined spaces, where there's only a couple inches between screw head and an obstruction. – Mike D. Mar 23 '10 at 2:41
5  
That "s" in Philips is way too close to the "h" in hex. I had to reread that for a second. – wheaties Mar 23 '10 at 2:44
show 21 more comments

Why can't we combine all known features into one ultimate programming language?

Because some features are known to suck.

OK, why can't we combine all known good features into one ultimate programming language?

Because some good features are known to be incompatible. A slightly famous example is what Phil Wadler called the expression problem. Current known good features can either (a) make it easy to add new things but make it harder to add new operations on things or (b) the other way around. How to get both in one language is an unsolved problem (though some people have had some good ideas).

Similarly, dynamic typing with run-time reflection, which is known to be good in some circumstances, is not compatible with static typing, which is known to be good in some circumstances.

Well then, isn't it at least a good idea to combine as many known good features into as few languages as possible?

It might be if programs were write-only. But programs have to be read, and not just by people. The more features you put into a language, the harder it is to build tools to analyze programs written in that language. Domain-specific languages often get tremendous leverage by creating a very restrictive language which a compiler can then analyze and do something special with. Well known example: regular expressions.

Even with general-purpose languages, some of us suspect that automated analysis of programs is going to yield big dividends in the future. Microsoft's Singularity project, where one goal is to analyze each device driver to make sure that it can't bring down the OS, is an example of this kind of dividend.

Well, given the restrictions on features and analysis, shouldn't we at least make each individual language as big as possible, adding as many mutually compatible features as are compatible with automated analysis?

No. About the design of programming languages, Guy Steele said

  • Programming languages should be designed not by piling feature on top of feature, but by removing the weaknesses and restrictions that make additional features appear necessary.

And about design in general, Antoine de Saint-Exupery said

  • Perfection is finally attained not when there is no longer anything to add, but when there is no longer anything to take away.
share|improve this answer
5  
This answer is very thoughtful and addresses a couple of major problems well. It should be voted higher. – Xeoncross Jan 16 '12 at 19:30

You could call it Ring

One Language to rule them all,
One Language to compile them,
One Language to link them all
and in the darkness run them.

Oh that's lame. I'm ashamed of myself.

I know it doesn't rhyme, but Dammit Jim I'm a programmer not a poet!

Now I'm mixing my memes

share|improve this answer
12  
WTF did I just read? – Mustafa Serdar Şanlı Feb 5 '12 at 21:17

Because everybody would have their own definition for a "perfect" language.

share|improve this answer
5  
Sub, that only counts if everything remains static. Things change. "Perfect planning" was the downfall of communism in most places around the world. – Tad Donaghe Mar 22 '10 at 21:27
3  
It's worse than that. My definition of a perfect programming language changes depending on what I'm doing at the moment. Overall, I'd take Common Lisp, but there's things I just can't do as easily in it. – David Thornley Mar 22 '10 at 21:41
show 1 more comment

The mythical programming language: DWIM (Do What I Mean)

share|improve this answer
3  
If it's really DWIM it might be full of peculiar bugs though... – ChristopheD Mar 22 '10 at 21:55
4  
@ChristopheD: only if you INTEND to have bugs! – Brian Postow Mar 22 '10 at 22:03
6  
This exists: Perl. :-D – Platinum Azure Mar 23 '10 at 1:49
23  
DWIM has been superseded by my own invention: DWISHM (Do What I Should Have Meant). Naturally the only standards conformant implementation must recurse on the requirements refinement. (DWISHM+WMBSHM --- what my boss should have meant, and so on). – Jim Dennis Mar 23 '10 at 6:26
2  
If you think in Perl, you really need more help than SO is likely to be able to give you... – Brian Postow Jun 22 '10 at 21:08
show 9 more comments

Because Lisp is already invented. The prefix notation bother me more than the parenthesis, but still... as powerful and abstract as it can be

share|improve this answer
show 4 more comments

That's like asking "why can't there be a perfect vehicle"?

Because each type of vehicle is used for different purposes. A truck may be slow but it can take my load, a sports car is fast but it costs more money, a tank is great for blowing up things, not so good for everyday travel etc.

Every language has its own purposes and uses. You can't just conform and have a single language that is good for everything.

Sure there are completing languages that are mostly mapped to the same uses (eg. .NET and Java) but the hardest part of programming isn't learning the syntax, it's learning the technology behind what is going on and the underlying concepts.

share|improve this answer
6  
I did a find-on-page for a car analogy :-D – al7ut9ov8my4wopt5ur6ais5 Mar 23 '10 at 22:17
8  
What about an El Camino with a rocket launcher strapped to the roof? it's fast, can take a load, and can blow shit up! – Tester101 Apr 12 '10 at 16:49
show 1 more comment

The language you describe should be able to do the following effectively:

  • writing efficient low level (OS-level) code
  • writing very high level (e.g. GUI code)
  • everything in between

in at least the following paradigms:

  • procedural
  • object-oriented
  • functional

for an astonishing amount of areas (from rocket science to movie encoding over desktop widgets and device drivers, .....)

Do you really think there could be a single solution that could cover all these (extremely different) needs in a single package?

Right tool for the right job, I say. Choice is a good thing...

share|improve this answer
2  
A programming language could be suitable for very low-level and very high-level code, by having optional declarations (Common Lisp has these - type declarations may be included, and may be checked or assumed by the compiler.) Similarly, a programming language may be multi-paradigm - but then you're losing some simplicity. Shouldn't the ultimate programming language be simple enough to comprehend (i.e., PL/I need not apply)? – David Thornley Mar 22 '10 at 21:43
1  
This same argument could be made for having different CPU architectures. The CPU must be able to do OS-level code efficiently, GUI code, HLLs, many programming paradigms, etc. I remember not too many years ago people making this very argument, and yet today I see x86 used in everything from embedded systems to the world's biggest server farms. Couldn't it be the case that there's also a "good enough" language that hits 95% on all these areas you want, such that the benefits of using it outweigh the benefits of something that sucks less? (Vaguely like Java today, but much better.) – Ken Mar 23 '10 at 0:49
1  
Java will rule them all :-) God I hate Java. – Kugel Apr 22 '10 at 12:57
show 1 more comment

The creation of programming languages is iterative. It's an evolutionary process that is unable to foresee future requirements, desires, etc.

What you're asking for would only be possible in a static world.

share|improve this answer
2  
The creation of character sets is iterative. We're up to Unicode 5.0 already. Couldn't we also determine an orthogonal basis for a programming model, like we have a basis for character sets? We keep adding to Unicode, but the foundation is essentially fixed. Similarly, couldn't one come up with a foundation for software that need not change? I've seen good work in this area, and nothing to suggest it's impossible. – Ken Mar 23 '10 at 0:53
show 3 more comments

Let's ignore for a second the idea that creating a programming language involves tradeoffs and that different languages make different choices in what strengths they'll focus on. Long before we get finished adding in all the cool features from every language ever created, we'll have created a monster. C++ by itself is complicated enough that a lot of people can't really use it well. Haskell by itself is enough to make a lot of people's brains explode. Putting all these things together would make such a complex language that nobody could actually use it. As Antoine de Saint-Exupery said, "Perfection is attained not when no more can be added, but when no more can be removed."

share|improve this answer
show 1 more comment

Think about what you're asking. You're asking that every programmer in the world agree with each other, almost completely, on a common set of values, methods, and tools.

Do you know more than one programmer?

QED.

share|improve this answer

There is an ultimate language, assembly

share|improve this answer
1  
for which processor ? – kriss May 30 '10 at 19:44
2  
I'm sorry, development costs include my ability to procure coffee and submarine sandwiches. At the least. – maxwellb Jun 22 '10 at 19:30
1  
That's not ultimate. Ultimate is at the other end of the arrow of time; assembly language is where we're coming from. – Donal Fellows Jun 22 '10 at 19:58
2  
If assembly is the ultimate language, then C is the ultimate cross-platform assembly language. – Michael Jul 13 '12 at 21:48
show 2 more comments

Given a language L, The cost of performing some task T is inversely proportional to the number of features one must read about in L before figuring out how to perform task T and directly proportional to the number of features required in order to perform task T. Note that I said features, not distinct features. Using a feature more than once means a language is more difficult.

Thus, the easiest language to write a 99 bottles of beer on the wall program in is something like HQ9+, since one will have encountered all the features necessary to write it within a few features of reading, and it only takes one of them to do so.

Given a small set of features X, the best language ever will be one which implements all of them, but ignores other features in favor of making the language easier to use.

Needless to say, every programmer has different needs for his program.

For the same reason, it is impossible to write the perfect [Y] application for many situations Y, since different companies have different needs.

share|improve this answer
show 1 more comment

Each programming languages abstracts a lower level syntax or structure or piece of complexity.

  • Machine Code - Raw bits whose interpretation depends on a complex piece of hardware (Abstracts the hardware).
  • Assembly Language - Abstracts Machine Code.
  • C Language - Abstracts Assembly Language syntax.
  • C++ - Abstracts C Type Languages with a higher level "syntax."
  • SQL - Abstracts data file access while adding data relating capabilities.
  • .NET - Abstracts Libraries of C and C++ Code (Win32 API) while adding it's own abstractions.
  • Code Libraries (for all languages) - Abstracts common things like math and string manipulation, graphics, printing, etc... (the implementation of which is can be in the same or lower level language or even a completely different language (abstraction) that may make it easier to write the library.)
  • ASP.NET, PHP, Ruby etc.. - Abstracts the programming of the HTTP protocol and the IIS/Apache servers.
  • COBOL - Abstracts the underlying mainframe hardware and file access (ISAM, VSAM, KSAM etc...)
  • LINQ - Abstracts SQL, for loops, etc..
  • UNIX BASH/DOS BATCH - Abstracts OS level commands for directory listings, memory consumption, process control etc...
  • RPG AS/400 - Created to abstract the creation of reports!
  • (I'll stop now, but you can effectively list every programming language here.)

A perfect "programming" language cannot exist because there is no perfect abstraction. No one abstraction encapsulates or encompasses all of the functionality contained beneath it without losing some ability (speed, functionality (like hardware access), etc..) in the process.

Combinations of abstractions do exist and do, in fact, create reasonably useful and powerful environments for programming. You can, for example, write LINQ to execute SQL in a C# program.

Find a method to get rid of the abstraction (good luck as that's what a programming language is) and you may find the perfect programming language...

Looking on the brighter side of things, these abstractions really simplify things (Unless you like coding in machine code!) and speed up the process of software creation while encapsulating the knowledge given to you by others (i.e. do you really understand everything that the processor (and compiler and libraries beneath) has to do when you mulitply two variables in your favorite high level language? Probably not, you just do it.).

How many hours have you been saved by having readily available to you, processors, compilers, interpreters, code libraries and databases of high quality? Don't have to know much about those things do you? (or do you?)

share|improve this answer
2  
@GMan - Correct. Point being? – user113476 Mar 23 '10 at 13:06
show 1 more comment

Because people in different fields express the same problem domain in different language and idiom. Just try listening to a physicist and an engineer discussing rotational dynamics some day. It's a muddle even when both parties are aware of the other's eccentricities.

And the same problem comes up again and again when you try to do inter-disciplinary work.

share|improve this answer
build one with a syntax that fits every task?

Not possible IMO. For example, how would you implement a syntax for logic programming while at the same time being a good syntax for, say, web development.

Why can’t there be an “ultimate” programming language?

Why do some people love Lisp while many people detest that djungle of parentheses? Opinions differ, so the term perfect always just applies to a certain group of people.

But if you're in the Budding Genius state at the moment, go ahead and write such a language.

share|improve this answer

It's like coming up with a "perfect" spoken language. Esperanto anyone?

To some, Java is the closest attempt so far. Many disagree. Even more have their own nominee.

A "one size fits all" programming language is decades, if not centuries away.

share|improve this answer
3  
Java isn't the closest attempt to a perfect language. That would be Common Lisp. On the other hand, Google gave me about 11,300 hits for COBOL "perfect programming language". – David Thornley Mar 22 '10 at 21:40
show 4 more comments

If there ever would be a perfect language. It will contain an awfull lot of functionality. And that means it will be hard to learn. And as such it will not be qualified as perfect.

As such, the perfect language will not exist. But we can always try to find it. That's why there are so much to choose from.

share|improve this answer

Why can't there be a perfect language when thinking of syntax, constructs and typing?

Because these aren't orthogonal. Many design decisions influence each other and require tradeoffs. A very simple example: garbage collection. Very convenient for programmers, but very bad if you need real-time guarantees or if memory is scarce. And having both garbage collection and manual memory management (and multiple alternatives for all such contradicting requirements) would lead to a messy and confusing language that's also very hard to implement a compiler/runtime for.

share|improve this answer

Just rephrasing what others have said in this paragraph. Each language has it's advantages and pitfalls, and DSLs can often be better than a generic language for a given task. When mixing tons of languages together, it's difficult to have an intuitive syntax.

That being said, I still think it's possible to have an "ultimate" programming language. But really, it'd just be an interface for using multiple languages side-by-side.

Perhaps it could look something like this (The memory-specific routines are implemented in C, most other code in Python):

<language lang="C">
    #include <textgraphics.h>
    unsigned short* screen = (unsigned short*)(0x06000000);
    int* keys = (int*)(0x04000132)
    const int key_left = 1 << 5;
    const int key_right = 1 << 4;

    int keyIsDown(int keyCode) {
        return !(keys & keyCode);
    }
    void plotPixel(int x, int y, unsigned short color) {
        screen[y*240+x] = color;
    }
    unsigned short RGB16(int r, int g, int b) {
        return (r<<10) + (g<<5) + b;
    }
</language>

<language lang="Python">
    while True:
        x = 120
        y = 80
        color = RGB15(16, 12, 24)
        draw_text(0, 96, color, "Hello World!\n"*8)
        if keyIsDown(key_left):
            x = max(0, x-1)
            plotPixel(x, y, color)
        if keyIsDown(key_right):
            x = min(239, x+1)
            plotPixel(x, y, color)
</language>

To those of you who are curious, this is meant to be run on a GameBoy Advance =D (textgraphics.h doesn't exist, and most of the code was written from memory)

In that example, the benefits of Python weren't fully shown. But it's CW, so please do edit if you have a better example.

Some of you might think this seems a little far fetched. But consider Python with Cython. HTML with the script tag. In a way, we're already starting to move towards this kind of interface.

However, making a compiler for something like this would be difficult. Compilers for each language would have to be designed to interact with the master compiler so that variables could be accessed across different languages. On top of that, the number of times a variable is cast from IE: Python's int to C's int would be extremely high. And mixing interpreted languages with static ones could cause problems. Consider:

<language lang="C">
    int functionA(int);
    int functionA(float);
</language>

<language lang="Python">
    functionA(someVariableWhoseTypeIsNotKnownAtCompileTime)
</language>

So in the end, mixing languages might not be suited well for those who really need the (execution)speed. But in cases where you truly do need raw speed, I'd be inclined to use a low-level language like C, and only stick with the simplest code, which this setup allows.

share|improve this answer
1  
Neat idea. Good luck with the implementation, though some message passing system between parallel runtime/processes might work. – Aiden Bell Mar 23 '10 at 23:25
show 3 more comments

A programming language that frees me from the burden of clarifying my ideas.


But I've made $13.72 already today!  Ow, stop throwing pennies.

share|improve this answer

If you want to solve problems in a small, self-contained problem space, then yes, there probably is an "ultimate" language for that tiny kingdom.

But the real world is fantastically complicated. If you want to solve problems in the real world, you need to have a lot of tools in your toolbox. We don't live in a one-size-fits-all world.

You may want to read Fred Brooks' No Silver Bullet on accidental complexity vs. essential complexity.

But wait! It gets worse. Say there was an "ultimate" programming language that could solve all problems. Software development wouldn't get any easier. Choosing a language is hardly the most controversial part of any real project. You'd still have to agree on what problem you were trying to solve, correctly gather and prioritize the requirements, and implement them without bugs and on schedule.

A perfect programming language would only be useful to perfect people with perfect information. For why that's unlikely to happen, see F A Hayek, among many others.

share|improve this answer
show 1 more comment

The answer to the question is a lot simpler than anything I've seen.

It is irrelevant whether or not there could be a perfect language. The cost of perfecting a language simply would not be warranted. This is true of all products. The mind-time that would be required to even approach perfection is better spent (supporting) curing cancer or getting us off this rock.

...and make no mistake both of those goals have a far lower cost combined than an "ultimate" language possibly could.

share|improve this answer
show 3 more comments

I use different languages for different tasks. The "best" language really depends on the details of the specific project you're developing.

share|improve this answer

This is like asking why a toolbox is so heavy - why have a hammer, a bunch of screwdrivers, a bunch of wrenches, super glue, etc.? Each language has an intended use, and it's designed primarily for that intended use. To design a programming language that works in every situation is like trying to come up with physical laws that work in all situations. Perhaps not impossible, but so difficult that it is a futile effort.

And besides - even if you did create this language, programmers would come along and write their own flavor of it, their own libraries, functions, implementations, etc., so that programs would look more and more like different meta-languages. (Which pretty much brings us back to the reason there is currently no single language that can do everything.)

share|improve this answer

Jeff wrote a reasonably nice response to this question in his blog:

http://www.codinghorror.com/blog/2006/04/why-do-we-have-so-many-screwdrivers.html

It's an interesting observation. I'm far from a handyman, but even I own many different screwdrivers: different sizes, different tips, different lengths. They're all performing the same job-- screwing*-- but each one is uniquely useful in the right scenario. I'd hate to throw out all the screwdrivers I own and opt for a one-size-fits-all approach. Sure, I may choose the standard screwdriver 90 percent of the time, but what about that other ten percent?

share|improve this answer

PEBCAK: Most of the times, it's the programmers' fault. Generally, any syntax can be easily interfaced and modelled to follow the programmer's requirements. The problem is the programmer, who doesn't even know his own requirements! If he would understand them from the beginning, he could model the syntax into a nice interface, which would become his own programming language.

share|improve this answer

Desinging programming languages is mostly about making compromises. Can it be blazing fast like C, yet allow weak typing like python? The more "forgiving" your programming language become, the higher level it gets and the slower it is.

Can you imagine a vehile as strong as a buldozer but as fast as a ferrari?

share|improve this answer
show 2 more comments

You have the perfect programming language, many of them actualy:

English
Portuguese
French
German
(...)

You can program anything (meaning people) quite well with them. The problem is that only humans understand it. Well ALICE also understands it, a little bit at least.

share|improve this answer

I think perfect is just in the perception, and everybody has different percieved views on what is perfect. Is a simple, high level language best? Maybe for productivity, but what about the low level stuff. Great, let's do that. Oh wait, now it's complicated and not productive enough for quick and dirty business applications.

I think most all modern languages are/were attempts at making the "perfect" language for their purpose. C# took this approach, trying to 1 up Java for example. Then you've all the web based languages that are so similar.

Every year more languages are developed, more percieved improvements over less than "perfect" languages. More operating systems and platforms to develop for. Imagine the landscape in 10 or 20 years.

share|improve this answer
1 2

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