Slashdot Mirror


Rexx Is Still Strong After 25 years

therexxman writes "March marks the 25th anniversary of the Rexx programming language, and to celebrate the Rexx Language Association is hosting the 15th Annual Rexx Symposium at the IBM Research Labs in Boeblingen, Germany, from May 2 to 6, 2004. Full details of the Symposium can be found in the 2004 Rexx Symposium Announcement. Many of the world's 'Rexxperts' will be in attendance including Rexx's founder, Decimal Arithmetic guru, and IBM Fellow, Mike Cowlishaw."

36 of 288 comments (clear)

  1. wait a minute by Stevyn · · Score: 5, Funny

    I thought it died off 65 million years ago.

    1. Re:wait a minute by alphakappa · · Score: 5, Funny

      I thought ti died off 65 million years ago

      No, THAT was Fortran.

      --
      "When the only tool you own is a hammer, every problem begins to resemble a nail." - Abraham Maslow (1908-1970)
  2. Rexx is good... by ShallowThroat · · Score: 4, Funny

    but it's no FORTRAN.

    --
    The "Insert Quote Here" line is almost as predictable as inserting an actual quote.
  3. in other news by Anonymous Coward · · Score: 5, Funny

    punch-card lovers association held its annual conference and proclaimed punch-cards superior to all modern IDEs, compilers, editors and debuggers.

  4. Remember aRexx? by bennomatic · · Score: 3, Interesting

    This reminds me of wasting hours and hours on my Amiga500. Yeah, it only had 3MB of RAM and no hard drive, but give me a blitter chip and four channel audio any day! Anyway, there was a great version of Rexx for the Amiga that became the defacto scripting dialect of the day. Great stuff, that aRexx.

    --
    The CB App. What's your 20?
    1. Re:Remember aRexx? by admbws · · Score: 4, Informative

      Ah, yes! If only we had something like ARexx here on UNIX. The "ARexx ports" concept really helped with things like information exchange, automation and "remote control". For those who don't know what it is, here's an explaination on ARexx, and briefly explains ports.

  5. Re:Call me ignorant, but... by glen604 · · Score: 3, Insightful

    Probably like most other mainframe languages, REXX is being used because when the programs were originally written, REXX was all there was- so rather than rewrite everything, REXX programmers just keep modifying the original code.

  6. Rexx was great... by gmuslera · · Score: 4, Insightful

    at least, back when i was using OS/2. When started with Linux, perl seemed very ugly and unintuitive to me (specially when comparing how text is parsed in both languages), but it was so easy to use the output of other programs (compared with REXX even under linux) that I finished to like it and using it for everything instead of REXX.

  7. Well.. by Rhesus+Piece · · Score: 4, Insightful

    I think it's great that a language has survived so long. That being said.. although it has it's purposes, it'd be hard to say that it is "strong". It may be used. It may be actively developed. However, "strong" is probably an overstatement.

    1. Re:Well.. by supersnail · · Score: 3, Insightful


      All depends how you look at it.

      Its the de-facto scripting language on the paltform that hosts two thirds of the fortune 500s data.

      --
      Old COBOL programmers never die. They just code in C.
  8. Best of Primitive Computing by handy_vandal · · Score: 3, Funny

    punch-card lovers association held its annual conference and proclaimed punch-cards superior to all modern IDEs, compilers, editors and debuggers.

    Punch cards are all good and fine.

    But if you want real power in a computing machine, what you need is something like Stonehenge, which has the advantage of ... umm, no hardware failure, and zero down-time (if the sun is shining).

    -kgj

    --
    -kgj
    1. Re:Best of Primitive Computing by jackbird · · Score: 4, Funny

      Isn't that 50% downtime?

    2. Re:Best of Primitive Computing by Lozzer · · Score: 5, Funny

      Never been to England? More like 90% :-)

      --
      Special Relativity: The person in the other queue thinks yours is moving faster.
  9. Rexx and Kedit by Camel+Pilot · · Score: 4, Interesting

    I still use Kedit, a win32 programmer's editor, that uses Rexx as the macro language and it rocks (both the editor and the macro environment). Even though Mansfield software has quit supporting Kedit about a decade ago it is still the best editor on the windows platform. I tried switching several times - first to Brief then to Codewright and then Slick edit but came back to Kedit because of if clean interface and performance.

    I send mansfield an e-mail every so often requesting a Linux version or ask to open source the code but they just ignore me. Kedit would be a good replacement for vi on linux.

    Any other Kedit fans out there? BTW not to be confused with the KDE based editor by the same name.

    1. Re:Rexx and Kedit by Camel+Pilot · · Score: 3, Informative

      Well I have been forcing myself to use vim but I miss things like folding the lines of a file with a simple command like

      >all "if "

      Then be able to add in lines with a

      >more "elseif "

      or take away with

      >less "# "

      Or doing a search and replace on all files within the ring (ie currently loaded files). If vim can do this I would sure like to find the cheat sheet.

      Yes $159 is steep I paid $79 and they have stopped production.

    2. Re:Rexx and Kedit by Stalky · · Score: 5, Informative
      I send mansfield an e-mail every so often requesting a Linux version or ask to open source the code but they just ignore me. Kedit would be a good replacement for vi on linux.

      You are looking for The Hessling Editor.

      --
      Jeff
    3. Re:Rexx and Kedit by Stalky · · Score: 5, Informative

      I don't know anything about KEdit's "more" and "less" commands, but the "all" command to which he referred allows you to hide all the lines in a file that don't match a given expression. His 'all "if"' example tells the editor to show only the lines with "if" in them. The user can work with those lines, just as he always does, but without the distraction of the lines he's not currently interested in. It's one of the most popular features of the XEdit family of editors.

      --
      Jeff
  10. Re:Call me ignorant, but... by hudsucker · · Score: 5, Informative
    Close... but it is more like REXX is to IBM mainframes (z/OS, VM, etc.) as AppleScript is to Mac OS.

    For those that are wondering: REXX was created to be the universal command language for IBM mainframes. It is a replacement for the earlier command languages (EXEC? on VM and CLIST on MVS).

    Then IBM ported it to OS/2, and from there it branched off. You can now find REXX for practically any platform. I have at least 5 different versions running on my Windows machine. (See Regina REXX on sourceforge, for example.)

    REXX's main features include:

    1. Strong string processing and parsing.
    2. Automatic data typing. You never define storage. Mike Cowlishaw's theory was that data types and storage allocation was a way to make it easier for the compiler writer, not the programmer.
    3. Associative arrays.
    4. No implementation limits. For example, you can do math on enormous numbers. And the limits that are there are designed to be meaningful to people (such as "this number can be up to 100 digits") instead of machines (this number can be x bits).
    5. Very easy to understand the syntax. The philosophy is 180 degrees different from Perl.

    But the real key to REXX is it is designed so it can easily interface with multiple environments. For example, one REXX exec in z/OS can send commands and interact with MVS, TSO, ISPF, the ISPF Editor (as an Edit macro), and others.

    The use of REXX on the mainframe is expanding. No mainframe product would think of writing their own command language; they just use REXX. And the more products you can interface with, the more useful it becomes.

    Yes, I know there are Unix and other scripting languages that do the same types of things. But REXX is the standard for z/OS.

  11. Brings back memories by Mostly+a+lurker · · Score: 3, Interesting
    I have rarely used REXX in recent years, but have fond memories of it from the late 1970s and the 1980s. In those days, I used to do a lot of development under VM/XA. Anyone who previously had to script in the old EXEC or EXEC2 could not help but see REXX as an unbelievable advance. Later, I used both PC REXX and the (inspired by REXX) KEXX macro language packaged with the KEDIT editor to write some very decent tools. Performance was not stellar, but that was really the only serious drawback (and, even there, it was better than most other interpreted languages of its day).

    I doubt whether academics see much to love in the language, but I always found it easy to learn and very effective in getting things done. On the few occasions I have used it in recent years, I have still considered it highly useable (and I speak as someone who has used Perl, Python, Lua and even occasionally Ruby).

  12. Rexx was great at the time, compared to ksh etc. by SamDrake · · Score: 5, Informative

    Other mainframe scripting languages were just disasters. I vividly remember replacing more than 1000 lines of EXEC-2 scripts with about 100 lines of REXX, and thinking that Mike Cowlishaw should be knighted.

    And REXX beat ksh hands down in terms of power and readability as well.

    I gave a speech ~ 1991 at a REXX Symposium about "REXX in UNIX". I had the crowd of mainframe and OS/2 people literally rolling in the aisles with laughter as I tried to explain ksh syntax to them. I made slides of some examples from the appendix in the KSH book, and it was hilarious. Even the geekiest UNIX geek has to admit that sh / ksh are disasters as programming languages. REXX was 10000% better.

    On the other hand, as I pointed out in my speech that day, there was another new language coming up that was 20000% better. It was called Perl. Perhaps you've heard of it. :-)

    REXX was originally intended to be a scripting language simple enough to allow non-professional-programmers to use. None of the UNIX scripting languages, including Perl, hit that mark - but REXX does.

    I haven't written any REXX in 10 years, and haven't missed it. But it WAS a big step forward, and should have been a better success.

  13. Why REXX Rocked So Hard by Ray+Radlein · · Score: 5, Informative

    REXX was very much like the Python or Perl of its day, in that it is a scripting language which can be used for everything from job control to add-on macros to interprocess communication.

    It is a completely typeless language, more or less -- basically, everything is a string, so the same variable could hold "87", "eight-seven", "00110111", "0x0117", or "Four Score and Seven" -- and the interpreter kept track of what operations were meaningful (i.e., adding "4" and "5" would yield "9", but adding "4" and "Five" wouldn't). Not surprisingly, it had a wide variety of string manipulation functions built in -- ROT13 could easily be accomplished with one command ("translate()"), for instance.

    On the other hand, it also featured arbitrary precision mathematics, which is a pretty nifty and not altogether common feature for a language.

    It was fairly portable -- I wrote REXX code for OS/2 and the Amiga, and was usually able to move the code from one to the other without having to worry about anything more than CR/LF translation. I was able to make use of old mainframe REXX code too, although it was usually ALL IN CAPS and ugly, which isn't really REXX's fault.

    In OS/2, I used REXX primarily as a batch language on steroids (the OS/2 "CMD" CLI ran REXX programs directly as a batch language), but I also used it to do some pretty heavy text manipulation as well. On the Amiga, I used REXX for those purposes, but the main things I used it for were for interprocess communication, and for extending the functionality of REXX-enabled programs. When Matt Dillon added a REXX port to his hacked-up version of emacs for the Amiga, I was able to use REXX macros to turn it from a nice programmer's text editor into one which did everything I wanted, excatly the way I wanted. I wrote macros to toss and filter FIDONet messages to and from my text editor.

    The same power was available to the REXX ports on other Amiga programs, from word processors to graphics editors. As an aide to interprocess communication, it could be used to allow your graphics editor to control a raytracer, or for your text editor to use the spellchecker in your word processor.

    I made some nice money at a time when I was underemployed by writing REXX programs to control the input and outputs of a NewTek Video Toaster for a guy with a mid-sized video production business; and the code was straightforward enough, and REXX easy enough to learn, that the business owner could easily make any minor changes to it himself (at the same time, after he had used it for a while, he was able to think of more and more things for it to do, which kept me in groceries for another month or two). For that matter, I also made a bit of money writing a REXX programming column for an Amiga magazine, so I really have fond memories of REXX for being a language that allowed me to continue, well, eating food.

    For a long time, IBM tried to convince Microsoft to use REXX as the macro language for Office, instead of BASIC; needless to say, if they had succeeded, we would be living in a universal paradise of peace and understanding right now, or something like that.

    Even today, I find myself thinking of all the neat things I could easily do with OpenOffice or AbiWord or Photoshop or Semware's text editor or Audacity or Zinf if they had REXX ports enabled...

  14. Re:go go rqqrtnb! by MisterBad · · Score: 4, Interesting

    Yeah, except it's an exact copy of a Pigdog Journal article by yours truly.

    --
    Evan Prodromou | evan@prodromou.name | http://evan.prodromou.name/
  15. Re:Call me ignorant, but... by Aussie · · Score: 4, Informative

    REXX is/was the replacment for things like EXEC & EXEC2. Really crappy langauges. If you have used these, you will understand why people use and like REXX. Though it is a pity IBM never released REXX for free, it is a fun sorta language, easy to learn and still quite powerful, though things like stemmed variables have a lot of system overhead.

  16. Re:Call me ignorant, but... by Shinobi · · Score: 4, Informative

    Don't forget that AmigaOS also got a version of Rexx, namely ARexx, back with 2.0, IIRC... Was kinda fun, the specs for system-friendly application programming recommended supporting ARexx scripting.

  17. Misread the title by QuantumFTL · · Score: 3, Funny

    At first I thought the title read Rexx is Still Wrong After 25 Years.

    I was like, "Damn straight!"

    Cheers,
    Justin

  18. Re:Call me ignorant, but... by hpavc · · Score: 4, Informative

    arexx was so great, its ability to glue apps together was so awesome. wxshell was neat.

    --
    members are seeing something, your seeing an ad
  19. Re:Rexx was great at the time, compared to ksh etc by erice · · Score: 3, Interesting

    On the other hand, as I pointed out in my speech that day, there was another new language coming up that was 20000% better. It was called Perl. Perhaps you've heard of it. :-)

    I don't really agree here. REXX is a free form shell scripting language and stomps on everything else I have used for that purpose and that includes perl. You can write a simple sequence of commands with virtually no syntactic clutter and incrementally add expressions and control structures. With REXX, one can effortless take a program across the entire practical range of tranditional Unix shell languanges and far beyond.

    Perl, of course, is more powerful but it is not really a shell language. It's syntax is more complex and gets in the way when you are trying to mix control code with command calls.

    I still write bourne shell scripts. I also write awkward "shell" scripts in perl. But I would rather use REXX.

  20. Re:Call me ignorant, but... by Alif · · Score: 5, Informative

    Regina, the free implementation of Rexx, works at linux well. And it has documentation superior to anything from IBM ;)

  21. and of course NetRexx by jobbegea · · Score: 3, Informative

    NetRexx is just your normal Rexx, but it compiles into Java byte code:

    --

    Net sa best, mar it koe minder
  22. Rexxperts by Citizen+of+Earth · · Score: 4, Funny

    Many of the world's 'Rexxperts' will be in attendance

    Such as Rooby-Rooby Roo.

  23. Rexx Is Still Strong After 25 years by dwalsh · · Score: 3, Funny

    Good Dog.

    --
    ${YEAR+1} is going to be the year of Linux on the desktop!
  24. Re:Fortran Called... by ErroneousBee · · Score: 3, Informative

    I dont get what is so yuck about simple readable code. Perhaps you need to ask why Unix has sh bash tch perl python ruby, wheras z/OS has clist rexx rexx rexx rexx and rexx.

    I do alot of Rexx stuff on Mainframes, and I far prefer Rexx to the C based stuff like Perl. Ive pottered with Rexx on Linux, and its far easier to use than bash, you can always use 'address SH' if you want to use the power of a shell command. I also had a play with NetRexx, but gave up when it became obvious that Java itself had serious problems on the client side.

    Rexx does have some weaknesses:
    - Maths performance can be a bit slow.
    - Lack of extensive libraries (this isnt a problem on z/OS where ISPF and TSO supply most of the functionality you need)
    - 'return' only returns a single string, it should be more like the multiple parms passed on 'call'.
    - 'call' and function calls dont pass stem variables (a stemmed variable is like a sparse array). Its possible to write Rexx functions in ASM that take stems, but thats not quite the same thing.
    - procedures and thier exposing (globalising) of variables need fixing. Ive seen too many programmers fail to use procedures and go on to create unmaintainable messes.
    - It still doesnt have a regexp function.

    --
    **TODO** Steal someone elses sig.
  25. Re:My Input by sql*kitten · · Score: 3, Insightful

    there are more powerful and yet less expensive solutions which should be hitting the market soon.

    It is unreasonable to compare technologies which aren't even available yet to one that has existed, and been relied on for very serious applications, for decades.

    Guess what's the language of choice for HPC? Why, FORTRAN of course. When Oracle wanted a scripting language, did they adapt shell script? No, they picked Ada, merged it with SQL to create PL/SQL. For serious computation or data processing, maturity matters more than buzzword-compliance.

  26. Re:My Input by Garg · · Score: 4, Informative

    Okay, this is probably a troll... but since it got modded up, I'll bite.

    How can anything be less expensive than free? I haven't seen a charged-for REXX since VX-REXX for OS/2... and that was for its GUI extensions to REXX, not the language itself. Was this for some obscure platform where someone was charging for a REXX port? Or was using it going to cause you to have to upgrade hardware or something?

    As far as powerful... what couldn't it do? Using the ADDRESS command, it can talk to the OS, communication libraries, datbases, etc. Admittedly it can get ugly doing a lot of that stuff. Did you perhaps mean other solutions were more elegant?

    Garg

    --
    Garg
    Alumnus, Xavier's School for Gifted Youngsters
  27. Re:My Input by Dinosaur+Neil · · Score: 3, Interesting

    Actually, Object REXX is available for Linux no-charge (as is) here. I've been using it with MySQL to kludge up a home inventory, as well as a few data extraction scripts for a project at school. While I'm planning learning a more conventional scripting language for Linux, I still haven't found any that match the power of the PARSE... But I digress.

    --
    "I'm a scientist! I don't think, I observe!" - Dr. Clayton Forrester
  28. Re:My Input by wwwillem · · Score: 3, Informative

    Wrong link, by you are right: here and here.

    --
    Browsers shouldn't have a back button!! It's all about going forward...