vote up 3 vote down star
2

Ah. I know everyone of you have worked on a system so weird only a handful of people know about. So what about it?

flag
I think you should check the community wiki box. – Gamecat Nov 26 '08 at 20:58
+1 (and back from -1) unusual systems are like edge conditions - it's worth knowing about them – Cruachan Nov 26 '08 at 21:07
This is a sort-of dupe of stackoverflow.com/questions/63241/…. I'm not closing since people are talking about more than just languages. – Robert S. Dec 3 '08 at 15:26

28 Answers

vote up 4 vote down check

I was once given a program to fix, written in a language called "EasyTrieve". The "program" was processed once for each line of input and it had a bunch of conditions - if you wanted the line of input to NOT be in the final report, the command was "flunk". I forget everything else about it, having long ago recycled those neurons to remember JCL or something equally useful.

link|flag
Don't dis' Easytrieve man :-) - I used to use it a lot. When the alternatives were 20 lines of Easytrieve or 500 of Cobol then it was a no-brainer – Cruachan Nov 26 '08 at 21:05
Showing your age again, Paul. (JCL) Ooops! So did I! – Ken Gentle Nov 26 '08 at 21:06
@Ken - //GO.SYSIN DD * – Paul Tomblin Nov 26 '08 at 21:09
With IBM Mainframes mastering JCL was the first step on the road to true Wizardry (the second was figuring out CICS) – Cruachan Nov 26 '08 at 21:10
@Cruachan - yeah, but I was a FORTRAN and PL/I programmer. – Paul Tomblin Nov 26 '08 at 21:11
show 5 more comments
vote up 1 vote down

BancStar. You can read about it here, but the entry does not properly describe the horror of a language that has only 2500 or so variables, all predefined by the language, all global, none initialized or cleared - ever. Or that will let you do a calculated GOTO or GOSUB, and that contains a keyword designed to clear the return stack to accompany that 'handy' ability. Or one that lets you assign subroutines to function keys that interrupt normal processing as soon as a key is pressed.

link|flag
vote up 0 vote down

Any mainframe programmers out there still loving REXX? I learnt that in spare moments in my first job, nosing at libraries I had found. Eventually became master of it, and found many legitimate uses (but mostly non-work-related uses, ha).

I also remember MANTIS, and the awful TIES which (supposedly) converted MANTIS to COBOL. Only took a few weeks to tidy up the mess that made of one program...

link|flag
vote up 1 vote down

Anyone tried ProIV?

link|flag
@divideandconquer.se: Did a lot of PROIV earlier in the MDIS days. It is still alive and kicking. proiv.com it was special... +1 – Kb Apr 4 at 15:18
vote up 0 vote down

Just for fun. Check this out. http://en.wikipedia.org/wiki/Brainfuck

I should comment that it is not commercial language and so does not directly answers to the question. But BF certainly stands out of a crowd and shows how far some people can come in foo-bar direction if they allowed to. As so it deserves to be mentioned.

link|flag
vote up 0 vote down

COBIS, a banking platform. Weird and honestly, kinda gross. When programmers ran into each other in the hallway a "how's it going?" could be frequently be heard answered: "cobis..."

link|flag
vote up 2 vote down

alt text

Google Mini.

These are fickle beasts, but they hold incredible searching power within. The first time I connected one to our intranet for testing purposes, it somehow caught scent of the Apache directory indices, and almost brought our intranet to its knees with its crawl. After the Great Indexing, everybody at the office had a field day doing searches to all the stuff well forgotten, and to the stuff better left forgotten, and to the stuff never meant to be known by men.

link|flag
vote up 2 vote down

The Logical Business Machines Adam.

The only reference I can find for this via Google is from a NY Times article about how LBM sued Coleco for trademark infringement. The story contains this key paragraph:

Logical Business Machines said it had been using the trademark ''Adam'' since 1975 for its natural language computer that lets computer users program in the language they speak, rather than a specialized computer language.

Oh, yes, program in the language you speak. By the way, you may not know this, but English is a language in which all sentences are in the form verb-noun, and all verbs can be abbreviated by their first two letters.

The Adam had my favorite error message ever. If you typed in a "sentence", and it didn't recognize the keyword, it didn't say "Syntax error." Oh no. That wouldn't be programming in the language that you speak, now, would it? It said:

Verb!

When the PC came out, the Adam's operating system/programming environment/whatever was briefly marketed as a program called Savvy PC. Despite this, for some reason my Adam experience did not open many doors for me in the new world of the PC.

link|flag
Verb! I can take a noun and bend it, gimme a noun! (Bat, boat, rake and plow!) Make it a verb and really send it! (Show me how!) – Beska May 20 at 13:22
vote up 1 vote down

APL. It uses Greek letters extensively.

link|flag
vote up 2 vote down

Now I know it's not a commercial system, but...

I would have to say the pseudo-assembly language that Donald Knuth invented for his "The Art of Computer Programming" books. He named the language MIX, and it was designed to run on the hypothetical MIX computer.

alt text

I took a course that used his books in University. I never really was able to make any useful sense out of that language. Probably need an IQ of 220 like Dr. Knuth.

link|flag
vote up 0 vote down

Gensym's G2 where you write code like this:

for the next 30 seconds do ...

for each tank that is connected to this pump do...

link|flag
vote up 1 vote down

Not long ago, I worked at a company which used a language called "Synergy", a 30-year-old relic of "business languages" that were popular in the 1980s. The syntax combined all of the most obnoxious aspects of COBOL, Assembly, and INTERCAL.

link|flag
+1 for intercal reference :) – Svante Nov 29 '08 at 21:03
vote up 0 vote down

CYBORG - so old I couldn't even find any links on Google. If anybody's ever even heard of this, please comment.

link|flag
vote up 0 vote down

Witango (it has nothing to do with the Tango library)

It's so bizarrely niche I'll slap down $20 nobody here has used it before. The IDE is basically a GUI tree representation of an IF statement, and you use it to build the entire application that way. It lacks the ability to write your own functions.

link|flag
I've had the sincere displeasure of using Witango. Just checked their website and can't believe they're still in business. You can post the $20 to me at Galwegian, Galway, Ireland. – Galwegian Jun 8 at 11:40
vote up 3 vote down

MUMPS - An OS / Database combination from DEC, A High Performance Database, originally designed as a medical information system. Programs were tables that could be updated live (code could be patched while it was executing - the next pass thru would get the new instructions). If you wanted to you could write self modifying programs.

link|flag
I've read about this in the Daily WTF. It's the highway to hell AND career deadend all combined in one. – Internet Friend Nov 26 '08 at 22:17
vote up 1 vote down

GPSS. I'm told this simulation language has a large following, but I have never met anyone in industry who has even heard of this.

link|flag
I remember that! – lkessler Nov 26 '08 at 23:12
vote up 0 vote down

I used 4D once... In french.

Yeah it's one of those localized programming language. Even if French is my native language it was painful. For an unknown reason the only language 4D has localized keywords is French.

English example

   CREATE EMPTY SET([Customers];"Payment Due")
   QUERY([Invoices];[Invoices]DueDate = Current date)
   While(Not(End selection([Invoices])))
      RELATE ONE ([Invoices]CustID)
      ADD TO SET([Customers];"Payment Due")
      NEXT RECORD([Invoices])
   End while
link|flag
vote up 0 vote down

I programmed in TOOLS. It was a custom, semi-object oriented language written in C. I got to work on the compiler...kinda fun!

link|flag
vote up 1 vote down

SNOBOL on a PDP-10

RPG II certainly had it's weirdnesses

link|flag
SNOBOL! I didn't quite get Regexes back in my SNOBOL days. Now, I think I might actually understand what it did. – S.Lott Aug 24 at 17:59
vote up 1 vote down

PL/M was (and still is) my nightmare. I am responsible for maintianing the software for an embedded automotive transmission controller. The basic framework is written in C, but the guy who was responsible for writing the actual transmission control logic only knew PL/M. The entire awful beast is written in one enormous file (something like 180 000 lines of code). The worst of it is that PL/M is essentially assembly language. That entire file is nothing but a collection of GOTO statements and low-level bit-twiddling. At least half of it is comments, but most of them read something like: "Doing this, in this situation, because it didn't work the other way. Be sure to set these flags if you want to do something else..."

link|flag
My god,, I had forgotten about that one. I used it back in the mid 80's for some thing or other that I quite can't remember – Peter M Nov 26 '08 at 21:32
vote up 0 vote down

Did you know HP has their own fully-fledged RDBMS product for HP-UX and mpe/ix? It's called Allbase/SQL.

I did some work on internal applications using Allbase at HP, circa 1994. I've never talked to anyone who has used it outside of HP.

I searched Wikipedia for an article on Allbase so I could link to it, but no such article seems to exist.

link|flag
Dare I say "Allbase belong to us!" ??? – Peter M Nov 26 '08 at 21:29
Apparently you do dare! Sadly, I think it unlikely anyone who actually uses Allbase would get that reference. – Bill Karwin Nov 26 '08 at 21:47
vote up 1 vote down

In high school, one of the languages we learned was SP/k, which was a subset of PL/1. I think the idea was that it was supposed to be a series of ever greater subsets, with SP/1 having barely any language at all, SP/2 having a few more keywords, and so on up to whatever was k\sub{max}. Of course we didn't use it that way and were basically thrown in the deep end.

We started with a "language" called "SIMON" that was a simplified machine code, and then "SAP" which was an assembler language for SIMON. Somewhere between these two losers and SP/k, I actually learned some languages that were useful, like FORTRAN.

link|flag
SP/k! Very handy concepts in the idea of nested sublanguages. If you take the concept and apply it to C or Python, it's helpful. But SP/x without an actual running implementation... – S.Lott Aug 24 at 17:58
vote up 2 vote down

At one of my previous jobs, there was a lot of code written in a "scripting language" called - and I kid you not - DataMan. This was intended to be short for "Data Manipulator" but several of us internally liked to call it "DataBoy". The syntax was definitely inspired by the authors' (and the principal customers') previous JCL and COBOL experience, and it was so incredibly turing-incomplete that it didn't support variables.

link|flag
ok i am a newbie to coding but...how the heck do you code without variables lol – mike nvck Nov 26 '08 at 21:48
You can do it if you use a stack - you push data onto it that retrieve by pulling off. Forth uses a similar idea. Needless to say coding anything this way is a nightmare – Cruachan Nov 26 '08 at 21:52
1  
Not to be picky... but you don't need variables to be turing-complete:-) – Gabe Moothart Nov 26 '08 at 22:53
DataMan uses a big buffer whose dimensions you define at the top of the script, and all of your values are kept at "known" offsets inside the buffer, with "known" fixed lengths. You copy from a certain offset and length in the imput buffer to a certain offset in the working buffer, etc. – Matt Campbell Nov 27 '08 at 6:15
vote up 1 vote down

Niakwa is a PC emulator/run-time environment for a dialect of Dartmouth BASIC used on early Wang multi-user systems. In the early 90's, I was (for a blessedly brief time) maintaining customized accounting systems in this language, some on the original hardware, and some ported to PC systems via this tool.

My jaw dropped just now when I googled them and found out that they're still in business, and people are still running software originally based on a dead Wang system some decades old.

For the youngsters: Wang

link|flag
vote up 2 vote down

Does JCL count?

For the younger generation: JCL is the job control language needed to do almost anything on a mainframe. It is still based on the good old punch card format (80 columns) and certain columns have specific meanings.

link|flag
//FT05F001 DD * /* – Paul Tomblin Nov 26 '08 at 21:10
1  
Absolutely it counts!!! JCL was one of the G-d-awful strangest-designed languagues every devised. Every option looked more like ad-hoc randomly added patches, with no thought process to try to make it logical. Millions of people worked on it, but only a handful of people knew how it worked. – lkessler Nov 26 '08 at 22:50
I understood JCL once. Hardest part is trying to name your creation in just 8 chars – Magnus Smith May 20 at 13:04
vote up 0 vote down

Only peripherally, but in the days before I was a real coder when I was messing around with code as by way of a analyzing research data I was peripherally involved with one of the first Distributed Array Processor (the DAP) in the UK. Based on a matrix of 64x64 cpus (can't remember what, but each approximatly equivalent to a PDP-11) and coded in Parallel Fortran.

I went to a public talk at the same University about super computers last year and they had pictures of the DAPs successor - which was about equivalent in processing power to a Playstation 2.

link|flag
vote up 2 vote down

JOVIAL. Jules Own Version of the International Algorithmic Language.

link|flag
You worked on VMS? – Paul Tomblin Nov 26 '08 at 21:03
I worked on an Air Force project called "Church Eye" where we used it. – S.Lott Nov 26 '08 at 21:08
I was thinking of BLISS, not JOVIAL. Never mind. – Paul Tomblin Nov 26 '08 at 21:15
BLISS, JOVIAL -- ahh, those were charming times.... Now we're all hyped up on Java and worried about the Python. – S.Lott Nov 27 '08 at 0:16
vote up 0 vote down

COPS. It's an in-house web application server with custom scripting language that one of my past employers developed. And I had to fix bugs in it.

For one thing, the code contained pretty much every point listed here: http://www.web-hits.org/txt/codingunmaintainable.html

But if you don't care about the implementation, and just about the scripting syntax... there are too many examples to list. The most memorable, perhaps, is that it was impossible to nest switches in if-blocks, but absolutely possible to do the reverse. Other the other way around. I thankfully forgot.

link|flag

Your Answer

Get an OpenID
or

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