vote up 28 vote down star
11

For the purpose of this question, let's define a dead programming language as one for which you cannot buy a newly manufactured piece of hardware and install an operating system which will let you run a compiler or interpreter for your language, without requiring an emulator. Thus, assembly language for any architecture which isn't currently being manufactured is dead.

This is a fairly strict definition of dead, since many dead languages under this definition are still easily runnable through emulators or hardware bought from eBay. Bonus votes if hardware or emulators are completely unobtainable.

flag
2  
Far to subjective and argumetive. Anything you say and there will be at least one who says it isnt dead. – Ctrl Alt D-1337 Feb 4 at 12:42
show 9 more comments

133 Answers

vote up 1 vote down

I did my first coding in GWBASIC 3, which was born the same year as me if the copyright notice is to be believed.

link|flag
vote up 0 vote down

OPL - it was a programming language for the Psion Series 3 organiser. I think the Psion 5 used it too, but that is also no longer being manufactured.

Edit: Redacted! It looks like OPL is alive in the form of an open source project, however Symbian aren't providing much support for it, so it'll probably die at some point.

link|flag
vote up 0 vote down

I got the feeling I will never ever be called upon to write any more Bliss.

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

Completely dead languages:

NCR's 315 NEAT

Alpha Micro Basic

Data General MVS Assembler

BOS Micro-COBOL (except for a possible use in France under a different name)

Wang VS COBOL

Cadol 3

A Language thought to be dead but actually alive and well.

dBASE -> www.dbase.com (now fully OOD and OOP).

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

QBASIC would be the most prominent.

I'm intimately familiar with COG, an event-based, C-like scripting language used in LucasArts' Jedi Knight. Although a mess of a language (you could use keywords as symbols), it compiled into bytecode and ran in a VM. It wasn't interpreted like most games' scripting languages were. As a result, it was ridiculously fast by comparison.

link|flag
vote up 0 vote down

R.I.P.

  • Turbo Pascal
  • AMOS
  • Amiga E
link|flag
show 1 more comment
vote up 0 vote down

PPE was actually quite fun - quite a powerful scripting language for PCBoard BBS systems.

link|flag
vote up 0 vote down

Does wiring a collator board count as a programming language? These were called plugboard programs. I used to wire the boards on an IBM 88 Collator many years ago....

link|flag
vote up 0 vote down

I had to learn Ada95 in my first semester of post-secondary education. The reason for that language was because it was strongly-typed. There are other strongly-typed languages, but I think the BASIC-like syntax was also a deciding factor. I still haven't seen a language since that came with a built-in data type for wraparound arrays.

link|flag
vote up 1 vote down

I thought my mad NATURAL skills were now useless but Google proves me wrong.

link|flag
vote up 0 vote down

My introduction to assembler was on the Z80 for the TRS-80 Model II. It was an incredibly enjoyable experience, but while there seem to be emulators for the Model I and III/IV, nobody has taken up the chore of implementing one for the II and it's lovely 8" disks, despite there being a lot of technical information available. (Yes, I've considered giving it a shot, but it's way down on a long list of stuff I need to work on head of it. :P)

link|flag
vote up 1 vote down

Back in Russia, my first languages were Algol 60 (books only - no real machine time) and Electronika B3-34 programmable calculator. Then I dabbled in PL-1, Snobol, Prolog, Ada - still no computer time. First real code that I managed to run somewhere was C (not dead, no, no!) and Algol 68 (quite dead, imho). There was Modula-2 and Turbo Pascal 5.5 in the college. So here I am the walking graveyard of languages.

Edit: Oh damn - forgot the DB languages! Paradox, dBase, FoxPro (is it dead yet?), Clarion(!). All of these used professionally, too.

link|flag
show 2 more comments
vote up 0 vote down

I guess any language for the MZ1Z016 series from Sharp is dead. I developed on that cool machine for several years from 1990 on.

link|flag
vote up 1 vote down

I wrote some pretty fancy stuff in TECO once upon a time.

link|flag
vote up 0 vote down

I used to code PL/1 on an IBM 3081 mainframe. Before that I knew BASIC (8 bit micros) and FORTRAN77, and thought PL/1 was a huge step forward. Alternatives on offer were Pascal, Algol and BCPL. I really liked PL/1s in-your-face "BEGIN;" & "END;"s (yup, instead of "{" & "}"); that and the nifty fixed-point integer types and built-in support for parallelism.

link|flag
vote up 0 vote down
  • 6202 Assembly
  • C64 BASIC
  • Amiga BASIC
  • AREXX (like apple script but the Amiga answer to it)
  • I learned Forth and Logo in high school.

Not that I really "know" any of these anymore. The knowledge has long since been committed to cobweb memory.

link|flag
vote up 2 vote down
  • AppleBasic
link|flag
vote up 0 vote down

Atari ST Basic. Great computer, horrible Basic.

link|flag
vote up 0 vote down

I used a gwbasic like language to teach my self to program about 8 years ago on a braille lite 18. This is an ancient palm pilot type device design for use by blind people that is no longer manufactured and has no emulators for it.

link|flag
vote up 2 vote down

I learned a bizarre version of assembly that was used on the CDC Cyber, which had 60 bit words. That was...different. This text describing the memory archetecture is taken from Wikipedia:

The central processor (CPU) and central memory (CM) operated in units of 60-bit words. In CDC lingo, the term "byte" referred to 12-bit entities (which coincided with the word size used by the peripheral processors). Characters were six bits, operation codes were six bits, and central memory addresses were 18 bits. Central processor instructions were either 15 bits or 30 bits. The 18-bit addressing inherent to the Cyber 170 series imposed a limit of 262,144 (256K) words of main memory, which was semiconductor memory in this series. The central processor had no I/O instructions, relying upon the peripheral processor (PP) units to do I/O.

Whee!

I definitely think this qualifies under the definition stated in the question...if you can buy a CDC Cyber somewhere, I can't imagine who would be selling it. (Since it was the size of several rooms with considerably less power than a PC.)

link|flag
show 2 more comments
vote up 0 vote down

Off the top of my head, how about:

  • SNOBOL
  • Simula
  • Burroughs D-machine (for nano-programming of chip instructions for microprocessors)
  • PDP11 Assembler (JSR PC,GETSTUFFT)
  • MIDITRAN (subset of FORTRAN)
  • APL

All of these were taught as a part of the Computer Science course at UNSW in the late '70's. This was when the famous Lions book, and course, were in full swing! Interesting times and I've still got my original copies of both the listing book and the commentary book.

cheers,

Rob

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

BASIC and your old Fortran.

link|flag
vote up 0 vote down

Assembler for the Motorola 6800.

BASIC... but really, who doesn't know BASIC.

link|flag
vote up 3 vote down

Is Modula-2 still around? I have also used SQLWindows, if anyone else has ever used that!

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

Apple Basic... good times on the Apple II GS and learning my first programming language. It was also a good way to learn that drawing to the screen problematically can be difficult but yet rewarding.

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

GWBasic. D-:

alt text

link|flag
vote up 0 vote down

If you want one of the more unusual languages, try the assembly langauge used by the microprocessor was used in the HP 41C calculator! This was a state of the art programmable calculator released in 1979. It had it's own reversh polish (RPN) programming language. However, under the hood was a microprocessor that could be accessed with special hardware attached.

Hackers eventually discovered how to dump the internal ROMs of the calculator and decode its instruction set. It used 56 bit registers and most of the instructions were 10 bites in length. And get this, the return stack only had 4 levels!

Eventually HP released thr source code to the calculator (called the NOMAS listings - NOt MAnufacturer Supported) and this enabled a flood of software to be written.

Those were the days!

link|flag
vote up 0 vote down

Pascal - my "technology requirement" in high school was Pascal, Cobol, or (strangely) Cooking. It was a kind of sweet torture - staring at a monochrome screen in a dimly lit room stepping through code with the wafting smell of cookies and the sound of laughter coming from the other room. Then again, I'm sure none of the cooking kids are chefs now, whereas...

link|flag

Your Answer

Get an OpenID
or

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