vote up 3 vote down star

As the title says, When Does a Language Die. When all Authors of the language die etc?.

flag
Since there has been a lot of discussion about the "death" of Java in recent years, I think this is a valid question. – Aaron Digulla Feb 17 at 12:14
why don't we all just GET - A - LIFE! – paul Feb 17 at 12:29
Although related to linguistics, en.wikipedia.org/wiki/Extinct_language may be of interest. – Norse Feb 17 at 13:11
Tell me what you mean by the death of a language, and then I'll tell you "when" it occurs. – Daniel Daranas Feb 17 at 14:16

11 Answers

vote up 1 vote down

Programming languages can never truly die as long as the compilers and the computers that the programs run on are still in use.

In practice, a programming language starts to die when the authors stop maintaining it, and are effectively dead when people stop writing new programs. It doesn't matter if old programs are still running, since the source code isn't needed to run the programs.

link|flag
Agreed, this is the case with COBOL en.wikipedia.org/wiki/COBOL – Pascal Thivent Sep 12 at 15:24
vote up 0 vote down

Old languages never die, they only fade away....

link|flag
vote up 0 vote down

Two conditions I'd say:

  • No one is choosing that language for new projects.
  • There are no plans to update / improve the language.

If both of these are true, then the number of projects that use the language can only go down until it reaches zero.

Whereas if people are still using it to solve new problems, there might be an incentive to improve it at some point. And if someone is still working to improve it, then people might start using it again.

link|flag
I'll go with this one. Although indirectly, it covers most of the cases. – ldigas Feb 17 at 14:13
vote up 1 vote down

According to my Latin teacher: Never. ;-)

link|flag
vote up 0 vote down

IMO, in the context of computer languages, a language is truly dead when there are no more problems that someone says "This would be straightforward to solve in "

There are lots of reasons why it is no longer straightforward to use a language:

  • no one knows the syntax any more
  • the compilers aren't available for the machines you have available
  • the compilers don't create object/executable files for the target machine

There are probably others, but those are the ones that spring to mind.

When exactly this occurs is hard to know, but it has happened before, and it will happen again.

link|flag
vote up 1 vote down

We like to think that a language is dead when it quits being maintained. However, the reality is that a language dies when there is no software left that is written in it. As long as that software is still around, somebody will have to maintain it at some point. I'm not 100% sure on this, but I'd guess that there are few if any languages that have died by this definition.

link|flag
vote up 0 vote down

A programming language isn't dead until both the authors stop maintaining it, and the community has moved on to other tools. For example, Microsoft has declared VB6 to be dead, but there are still many active implementations using VB6.

link|flag
vote up 1 vote down

Programming language dies, when there are no tools (compilers, libraries) that work on relatively modern platforms. Then nobody can use the language except on vintage platforms.

"When nobody uses it" is not that good definition - how can you know that nobody uses it? You can't.

link|flag
vote up 7 vote down

With spoken languages, there are a couple definitions: (1) when no one speaks the language, or (2) when no one uses the language as their primary language. You could apply the same criteria to programming languages.

link|flag
vote up 2 vote down

When nobody uses it. Or you think the people that started the English language are still around? :)

link|flag
The languag of the Mayas (Mayan?) was dead for a long time but now, people have started to decode it from stone engravings. Is Mayan dead? – Aaron Digulla Feb 17 at 15:01
1  
If nobody uses it, I would say yes. Ok, 10 or 20 people understand it? Good for them, does not changes the fact that nobody else uses it and nobody else want to learn it(problably some scholars might want to). wordnetweb.princeton.edu/perl/… – Sergio Feb 17 at 15:47
vote up 2 vote down

That depends on your definition of "dead":

  • when it doesn't change/improve anymore
  • when no one is using it anymore
  • when no one is left who can read it
  • when the last document written in that language is gone (otherwise, someone might learn the language from it)
link|flag
exactly, the answer to this question varies depending on what each individual's definition of 'dead' is. – yx Feb 17 at 13:14
I think that was what the OP was trying to find out. :-) – Jason Baker Feb 17 at 13:15
I find it somewhat amusing that if your answer is interpreted as being in chronological order, that implies that at the end there will still be documents (perhaps programs still being run) for which there is nobody alive who can read them. – Adam Bellaire Feb 18 at 13:47
@Adam: This wasn't intentional when I wrote it but it makes sense. There is lot of code today which runs but which no one using that code can maintain :) – Aaron Digulla Feb 19 at 8:19

Your Answer

Get an OpenID
or

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