The Codist - Programmerthink

A Programming Language List

Posted: 01/25/2007, Perm Link Readers: 1054


After seeing this Programming Languages Chart again, I thought about all the programming languages that I have learned and actually written code in:

  • Dartmouth Basic
  • Fortran II
  • APL
  • Applesoft Basic
  • 6502 assembly
  • Z80 assembly
  • Fortran 66
  • IBM JCL
  • Fortran 77
  • Jovial J73
  • Mil Std 1750a assembly
  • Z8000 assembly
  • Turbo Pascal
  • 8088 assembly
  • C
  • 680X0 assembly
  • Forth
  • C with object extensions
  • Postscript
  • Think C
  • C++
  • PowerPC assembly
  • Java
  • SQL
  • Objective-C
  • Perl
  • Javascript

Of course I have played with many others, especially lately, but these represent real use.

The coolest language that I ever used was APL. So much power in so few lines of code; but the next day you had no idea what it did.

In 1988 I read about OO for the first time but had no language available to me so I wrote my own object extensions on C. It was pretty oddball, but it worked, and still lives on today (as far as I know, a scary thought) in the Deltagraph source code.

Tags: languages
Shawn 01/25/2007 22:30

Cool list~hey,bro~maybe you lost some pretty much cool langs like Scheme and lisp.

Diogo 01/27/2007 17:37

i'd say you need some functional languages to add to that list. Try lisp, it is extremely expressive in a few lines of code, AND you get to know what the code was supposed to do the day after.

erlang and haskell would also be a great add there. It gives you more insight in programming as a whole.

if you learn some smalltalk too, you'd have learnt almost all there is to know about programming, in a whole lot of different paradigms.