vote up 31 vote down star
16

For me I think it has to be the scripting language of an old proprietary telephony platform I used in the early 2000s. The language itself was not so bad, but the fact that it was meant to be edited with a drag-and-drop GUI, which did not expose all the functionality I needed, was quite frustrating. I also remember having to manually implement many common functions, such as calculating the length of a string.

Whenever I wanted to use "custom" or "advanced" functions, I had to edit the script files in a text editor, but as soon as I opened the files in the GUI again they were reformatted and restructured, which usually resulted in broken code. And, of course, this was an interpreted language, so I would not know it was broken until I actually ran it—oh, and did I mention that it did not run the same in the simulator as in the live environment?

So, what is the strangest programming language or environment you have used, and why did you use it?

Note that I'm interested in languages and environments that you have actually used for "real-world" situations, so Whitespace, Brainf***k and friends are not valid—unless you have used them for something "real", of course.

flag
show 5 more comments

121 Answers

1 2 3 4 5 next
vote up 0 vote down

COBOL was pretty weird - it was like writing prose. The strangest had to be ladder logic for PLC hardware - programming by circuit diagram!

link|flag
vote up 0 vote down

PAL (Playlist Automation) script, its used for automating playlist information inside DJ software.

link|flag
vote up -1 vote down

Ook!

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

Actually used and not just seen as a curiosity? RPG (RePort Generator) on IBM System/38 and AS/400 systems. Strangely, it worked a lot like relay ladder logic used to program control systems.

link|flag
show 3 more comments
vote up 3 vote down

I used LabView once and found it pretty unusual to me. It's a very graphical, sort of drag and drop, programming language. Wikipedia: LABVIEW

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

One company I worked at used RTL2, they had pretty much the only licence in the country for the compiler.

link|flag
vote up 2 vote down

So far the weirdest languages I have worked with tend to be proprietary scripting languages for various business and scientific languages. In some cases the languages are similar to and older version of Visual Basic for Applications or a more advanced version of BASIC which tends to be fairly easy to pick up and work with. While others tend to be extremely bizarre languages that are less of a "macro language" and more of a way of scripting reports.

So far the worst thing about most of these scripting languages is that they are for one off projects, once I figure out how to write something useful with the language I end up never having to use it again.

link|flag
vote up 4 vote down

I use to use the R language (and S) for statistical analysis and modelling.

R is open source and there was no set way of doing things. The way functions were called varied greatly depending on the library used. A lot like PH I suppose.

link|flag
vote up 1 vote down

CLIPS (used for cognitive modelling) its a wierd combo of PROLOG and c and some other languages, powerful but horrible. Im so glad that my university days are over!

link|flag
vote up 0 vote down

I did not actually use it but read a lot about MUMPS..

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

AppleScript is pretty weird I think. Examples

link|flag
vote up 0 vote down

Brainf*ck is pretty weird, but I can't say I've ever used it for anything "real".

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

DOS batch. It's a pain to do anything significant at all.

link|flag
1  
I'm not saying you can't do anything -- only that it's painful. – Joel Coehoorn Jun 4 at 13:42
show 3 more comments
vote up 0 vote down

ABAP.

Hated it from the first go.

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

FORTH - bonkers. Brilliantly bonkers.

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

Occam is the strangest language I ever used. It is a parallel language, designed to work on more than one processor, and written in an age when that meant lots of computers chained together, which reminds me of the Replicators from SG-1, actually.

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

FOCUS for Mainframes is the weirdest one I ever used, I think. Scary to see that it's still in active development.... http://www.informationbuilders.com/products/focus/ibm_overview.html

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

Haskell is a pretty weird declarative language. As the HaskellWiki says, "it is a polymorphically statically typed, lazy, purely functional language".

You can end up with some pretty impressive stuff from only a couple of lines of code. It does surprise me that with Python and Ruby taking off in recent years, I haven't heard of anyone using Haskell. Then again, if you visit the Haskell site, you'll probably realise it's been a bit neglected in the last few years.

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

My second job (circa 2003) had me programming web surveys in a scripting language called Quancept. Although the product it was currently in was designed to do web surveys, the language supposedly had its roots in the 1960's, doing phone surveys. Whether this was ever true I never followed up on but it clearly was an ancient language - no functions, no way to reuse code, etc. Every "question" and "answer" you asked people had to be hardcoded into the script. And it was very limited, but it never failed that the client wanted something herculean done with the presentation of the questions that no amount of scripting or CSS was going to be able to pull off (the resulting HTML had no useable pattern). It had some neat stuff, like how it could randomize answers (to offset people who just picked "C" and moved on) but keep track of where the responses go, but I was dying for a "real" language.

Interestingly, the way I moved up in the company was to make a C# program that would generate code for it. Clients would send us the survey in the form of a Word document. I could paste the question into the "question" textbox, paste the answers into the "answers" textbox, click a button and voila - the necessary script was generated, with all the Word stuff (like the apostrophes and dashes and so forth that the compiler would choke on) stripped out. It would even add it to a running script in the bottom pane and increment question numbers automatically.

When I offered it to my coworkers, they declined to use it. They said that they didn't really trust it but I think the real fear was that it might underscore how trivial a job it was and how unnecessary it was to have them sit there and do it.

And since doing this and some other stuff in C# got me noticed, I advanced in the company. And the scripting job I used to do got offshored (all the aforementioned coworkers saw the writing on the wall and jumped ship by then).

So the happy ending to the story is that I automated myself out of that shitty job and into a better position.

link|flag
1  
Interesting story. Exactly the kind of "war story" I was looking for. :) – Anders Sandvig Sep 15 '08 at 16:28
1  
I just left a market research job... quancept - and it's processing companion Quantum - are special little languages – mabwi Sep 15 '08 at 16:56
1  
thinkgeek.com/tshirts-apparel/unisex/… This t-shirt fits very well. – Ólafur Waage Feb 7 at 5:40
vote up 14 vote down

Prolog

I have enjoyed it though :)

link|flag
show 3 more comments
vote up 4 vote down

ChucK, which is the first 'strongly-timed' programming language I've used. It's a music programming language, so you need to have individual threads play 'on the beat'. Because of this dur (short for "duration") and now are as fundamental to the language as int and 0 are to most languages.

impromptu is a similar language, although I haven't had a chance to play around with it yet.

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

MUMPS is a very good candidate : 1 letter commands. They never heard of something like mnemonics. You can put as many letters ( errr, commands) in a line as you like. Have you ever heard the term letter soup? Well, this is a MUMPS program. Very probably, one can make all calculations to send a rocket to the moon in a couple of pages program. MUMPS is an Operational System and language at the same time. Because of this it is EXTREMELY power-full and compact, but ABSOLUTELY weird. Is mostly used to control medicines, stocks and everything related in hospitals, but, due to its size and speed, it is good for any kind of inventories control. Currently it also can be found as an object oriented language with GUI's and all, and not only in the old "DOS" or text stile

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

ABAP is a mixture of Clipper, Delphy (Pascal) and C, so it is no so bad.

link|flag
vote up 3 vote down

I once worked for the IT department in a telemarketing company (I know, it's evil, that's why I'm not there anymore, ok?).

They had a proprietary scripting language called "Magellan" that had special hooks into the dialing system, so you had events firing for "On Pickup" and "On Hangup"... But as a language it was like some kind of hybrid between Excel and Visual Basic 6.

The company that made it went out of business, but you can still see a few references online: http://www.google.com/search?q=melita+magellan

link|flag
vote up 2 vote down

TRAC. Only language I've ever used where you're supposed to write self-modifying code.

link|flag
vote up 0 vote down

ERLANG is quite interesting, although as languages go, it's fairly sane. It's scalability is stupidly cool, though.

link|flag
vote up 2 vote down

PROGRESS: UI + database querying language all wrapped into one. Like many 4GL languages it is very powerful (one line of code to update a record in a database with UI) but as soon as you need to program for real life projects you needs thousands of lines of code, a real gasworks.
They even tried to simulate object-oriented programming with a procedural language - SmartObjects - boy did you have to be smart to program with them.
I used it for 12 years and I am happy to have left it behind.

link|flag
vote up 1 vote down

STEVE: it's a robot simulation language.

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

By far, LOLCODE. Never developed a production app, but I've actually written small, sample programs in the language.

link|flag
1 2 3 4 5 next

Your Answer

Get an OpenID
or

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