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

vote up 1 vote down

Actually the language used by the TK-83 and TK-85 (which were Sinclair clones) computers was plain BASIC! I had and still have a fully functioning TK-85 with 48k memory. The problem with them was the keyboad. When typing text, the keys acted as regular nowadays keys. The "L" key meant the "L" letter. But when one was programing, by using key combinations, one would press the shift + the function keys and then any other key, the computer would write on the screen the meaning of this other key. So pressing the shift+function+"L", the computer would understand that you were actually typing "LET", and would write this word on the screen. So in the example given by Fernando Barrocal, once you've finished typing it, would actually be presented in the screen as :

original example :

10 SHIFT+FUNCTION L PRICE=12; //(let)

20 SHIFT+FUNCTION P PRICE; //(print)

30 SHIFT+FUNCTION G 10; //(goto)

SHIFT+FUNCTION R //(run)

would appear on screen as :

10 LET PRICE = 12

20 PRINT PRICE

30 GOTO 10

run

In the beginning this way of programming was quite slow, because even with all keys having the programming meanings printed on them, it took some time to get used to it. But after a while, as with everything, once one got used with this way of entering commands and functions, the programming was VERY fast. With the left hand you would press the shift+function keys combination and with the other hand one would just keep pressing the keys with the commands and the computer would write the whole thing for you.

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

WinBatch. I'm not talking about regular windows batch files, this was a proprietary automation scripting product I had to use to write installation scripts at an old job. It could interface with windows native functions, but the whole thing was pretty clunky and it didn't offer much in the way of code re-use between files. I can see where it fits a niche, but if they just added a few modern language features it would definitely be an improvement. Its IDE isn't very helpful either. It's just... odd

I guess they have a CGI web script language out now. A bit scary.

link|flag
vote up 1 vote down

Motorola C-5 Network processor microcode.
After 2 potential products failed miserably due to performance issues and Motorola discontinued the the C-5 management finally realized that this was a nice waste of a year for 5 people but its time move to another platforms.

link|flag
vote up 1 vote down

It never had a name but my current job started out working with a "language" the consisted of a real-time rule enforcement engine based on a graph. It had no explicet sequential operations and allowed arbitrary linking. Also rules were first order objects. It was/is actually a really cool spectacularly flexible system, just totally impractical (system requirements >1GB ram and about 90s boot time).

The current incarnation is way different but is not quite ready for public consumption. ;)

link|flag
vote up 1 vote down

Modula-3

http://en.wikipedia.org/wiki/Modula-3

I coded with this for a year in the early 90s. It is mainly strange because it is exotic, and not many people have professionally coded with it.

And, of course, Object Pascal incorporated most of the features of Modula-3.

link|flag
vote up 1 vote down

I enjoyed the horrors of using Siebel 6.2 SmartScript for an online insurance quoting system. What made it interesting is that it was almost VB code that you actually coded into the database, but it could hit the underlying compiled VB/C code. This made the one project where it was used difficult since there were 4 developer all working on the same progression of screens in this work flow. Add to it that the built-in web based Siebel was unable to handle multiple browser windows.

link|flag
vote up 1 vote down

I worked on Microsoft Great Plains.. Which uses Dexterity. For me one of the worst things about the language was the fact there was a limit to the size of the procedures you wrote.. I spent many hours removing comments, and renaming variable to 1 letter to get a few precious extra characters. I'd be interested to know if anyone else ever had to use it.

link|flag
vote up 1 vote down

I wrote an entire simulation of a train using the joyless mind-sapping thing known as ISaGRAF which is an "industry standard" system for creating electronic simulations.

And you can either write hardcore chip logic using something vaguely like Pascal, or with little drag and drop GUI diagrams that look very similar to flowcharts.

I'm sure it's not bad for a small system. But an entire train consisting of ten carriages and their electronics?

This was where I learnt that hardware designers think very differently to software people.

link|flag
vote up 1 vote down

JCL - Job Control Language. Yup, in "Operations" with the wide tie wearing zombies who chose not to go to trucking school and decided that they, too, could have careers in the exciting field of data processing.

This was back in the days when you could have an ash tray at YOUR DESK! AWWWWWEEEESSOME!

link|flag
vote up 1 vote down

About 10 years ago I was at a job that had a PRIME computer (yes, it was completely obsolete), and on it was a language called INFO. It was actually a scripting language and database together, and it was so easy to use, I was using it the first day. And so odd, that it was really easy to completely screw up the process. I don't have any example code, so I'll give you some ideas.

It had line numbers, and if the numbers started with an odd number, the statements were SQL like and worked on the entire set. If they started with an even number, the statements were procedural.

100 select * from table1 where field1 = "value1"

110 select * from selection set where field2 = "value2"

200 for each value in select set

210 field3 = field3 + 5

220 next

300 print field1, field2, field3 from selection set

It used an ISAM database, and it was quick to learn, quick to run, and if compiled code was needed, we could write it in CWIC, which then compiled to a FORTRAN. CWIC was also very easy to learn. But that odd/even line number changing the way the code was used allowed really complex, funky applications. (I'll have to go see if I can find a real example.)

link|flag
vote up 1 vote down

In descending order of weirdness (from the languages that I have actually written "production" programs in):

  • APL: A Programming Language -- super powerful and super confusing. Perl is clear in comparison.
  • IBM 1401 assembly language. Optimized for character processing in 4KB of memory. Characters were 8 bits wide: seven for the character and one for the "word mark". The "word mark" bit was used to mark the end of strings (something akin to the null character delimitor for c strings). The copy/move string command would copy characters from A to B until it ran into a word mark in A (and sometimes in B). Bad things happened when you forgot to insert the word mark; the move would wrap around memory and wipe out what passed for the operating system control code in those days.
  • Snobol: a string processing language -- when I used it in the 70's, I was just realizing that not all language had to be procedural.
  • Prolog: Oddly enough much like Snobol in that it matches patterns.
  • AWK: a unix-style pattern-matching package that I used for close to 10 years for mangling characters as part of a file copy. Sort of like regular expressions on sterroids.
  • XSLT: When I was in the XSLT zone, I could do some wonderous things to XML files. But it took a while to get one's head wrapped around the functional approach.
link|flag
vote up 1 vote down

Linc 4 GL. Then Cobol was generated as running code.

link|flag
vote up 1 vote down

Lots of possibilities here.

machine languages:

  • DigiComp
    used because:
    1. only language I knew - my first.
    2. only language spoken by the platform.
  • IBM 360/70 channel controller microcode
    used because:
    1. the i/o hardware guys had to steal something,
      and big blue's channel controller was covered in POO.
    2. software guys are, for the most part, completely POO less.

assembled:

  • A weird AT&T micro implementing an abstract machine (aka a DSL),
    with 3 numeric registers (can do arithmetic),
    a string register or two (can index, substring, and catenate),
    PLUS an entire 256 bytes of RAM - all for data.

    used because:
  • someone, upon seeing the machine,
    cleverly realized it was actually a
    platform for small business accounting software.
    in disguise.
  • hummer winblad would need funding, someday.
  • Cray-1

    Load a register from memory?
    No, no, no, my friend.
    Move an address into one of these registers, over here.
    Now do something else, entirely unrelated, for a while.
    Ok, now look in this other register, over there.
    Tada! - It's that data you wanted from memory.
    See - easy, peezy.

higher level:

  • SNOBOL

    used because:
    1. writing the code to translate a runway coordinate database
      takes the same number of weeks as doing the translation by hand.
    2. writing code is more fun.
    3. fuzzy math is easier than it sounds.
      e.g. what is one times fuzzy risk plus zero times nothing?
      four - 'cuz zero times never again divided by BUFD equals three.
    used again, and again, and again
    because:
    1. bootstrapping (a new language)
      without SNOBOL
      is like a day without sunshine.
      30 times in a row.
    2. every time.


How about something a bit weirder?

Severely, grotesquely weird?


Like:

  • HTML - Eeou, yuckey weird.
  • C++   - You must be joking weird.
  • Java  - Ok, just stop it. This isn't funny any more weird.


And finally, there's the absolute, hands down, weirdest weirdo of them all:


  • Smalltalk - through the looking glass weird.
                        A lot like nirvana. (The concept, not the band)
                        Having arrived you can never go back, never,
                        and you mustn't even try - for then the weirdness,
                        my god, the weirdness -simply unbearable.
                        Now how weird is that?
link|flag
vote up 1 vote down

I have never seen something as strange as Centura and its weird IDE Gupta.

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

I can hardly say i've used it in anger, but for a while, iShell was free for many uses, And it provided better multimedia support than HyperCard (like color!), so we chose it for our final project. The programming 'language' was a visual one, with drag and drop source editing. It was actually fairly natural to use, once you got used to finding the pieces to place.

screencap of iShell Programming

Ultimately, the project suffered from a lack-of vision on all-our parts, and so we never got much farther than a dozen rooms of content with a few interactive elements.

If i had to make a similar presentation-oriented app again, and didn't need anything like a database back-end, xml-rpc or other such silliness, iShell might fit the bill.

link|flag
vote up 1 vote down

The first time I used LISP I felt like I had just been shown the matrix. It was a terrible, overwhelming feeling of hopelessness and parentheses.

link|flag
vote up 1 vote down

T-SQL......................

link|flag
vote up 1 vote down

Back at the height of the .com boom I worked on a project to create a remote testing automation system for network switch as a contractor. The language spoken by the switches was an implementation of MML originally written by a small Russian company. It was so hard to understand the language due to it's lack of constant structure and style that we ended up writing a PERL parser act as an intermediate layer and protect everyone on the projects sanity. All during the project I had flashbacks to my college course on x86 assembly...

On the other hand... I've always enjoyed LISP... emacs or ansi I love parens! Seriously I took the red pill during and AI class in college and have been modifying emacs sense. As an added bonus it makes the noobies eyes hurt.

link|flag
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 0 vote down

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

link|flag
show 2 more comments
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 0 vote down

ABAP.

Hated it from the first go.

link|flag
show 1 more comment
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 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 0 vote down

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

link|flag
vote up 0 vote down

NCR-500 machine language: 12 decimal digits per instruction (2-digit opcode, 2-digits for each of 3 operand addresses, 2 digit conditional next instruction, 2-digit next instruction), and 4 planes of 100 memory locations. One can enter these instructions into memory using a console that looks just like a cash register!

link|flag
vote up 0 vote down

CLP for the iSeries / AS400 is the strangest language that I have ever used

link|flag
vote up 0 vote down

used brainfuck.. took 2 days to code a 3 digit incrementor

link|flag

Your Answer

Get an OpenID
or

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