User Mario AT - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T01:43:26Z http://stackoverflow.com/feeds/user/7881 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/102463#102463 1 Answer by Mario AT for What is the strangest programming language you have used? Mario AT 2008-09-19T14:50:45Z 2008-09-19T14:56:54Z <p>Actually the language used by the <strong>TK-83</strong> and <strong>TK-85</strong> (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 :</p> <p>original example :</p> <p>10 SHIFT+FUNCTION L PRICE=12; //(let)</p> <p>20 SHIFT+FUNCTION P PRICE; //(print)</p> <p>30 SHIFT+FUNCTION G 10; //(goto)</p> <blockquote> <p>SHIFT+FUNCTION R //(run)</p> </blockquote> <p>would appear on screen as :</p> <p>10 LET PRICE = 12</p> <p>20 PRINT PRICE</p> <p>30 GOTO 10</p> <p>run</p> <p>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.</p> http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/63733#63733 0 Answer by Mario AT for What is the strangest programming language you have used? Mario AT 2008-09-15T15:06:25Z 2008-09-15T15:06:25Z <p>ABAP is a mixture of Clipper, Delphy (Pascal) and C, so it is no so bad.</p> http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/63631#63631 14 Answer by Mario AT for What is the strangest programming language you have used? Mario AT 2008-09-15T14:55:21Z 2008-09-15T14:55:21Z <p>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</p>