Slashdot Mirror


O'Reilly on the Virtues of Rexx

gaijincory writes "O'Reilly's ONLamp has written an interesting article on the history and virtues of Rexx, the first widely used scripting language concocted 25 years ago. According to the review, 'Rexx employs decimal rather than binary arithmetic' and 'You don't need to declare or predefine your variables. Rexx automatically allocates them when you first refer to them.' I'd be interested to hear about any success (or failure) implementation stories."

47 of 330 comments (clear)

  1. You asked for it by Anonymous Coward · · Score: 4, Funny

    We tried working with Rexx

    An employee suggested to me that we load Rexx on a few machines here as an evaluation. I was skeptical at first but he explained the benefits of using it for our employee's day-to-day scripting. So I decided to let him install the interpreter onto 5 machines to see how the users got on. Besides, our IT manager had been using it on his system and it seemed to work fine, why not try it on the client machines?

    Once he'd got the machines up and running with Rexx we let the users try it out. It all seemed fine to start with: Rexx was a pretty good replacement for batch files and the users could still do their work as normal.

    Alas it did not stay that way. After a few days, I had lost count of the number of complaints received from users who could find things they were used to or tasks they could not perform that they previously could with batch files. The final straw came when one employee lost several hours work when Rexx suddenly had an error reading from our intranet file server and corrupted his project.

    Needless to say, the Rexx team offered no support whatsoever. I made the employee uninstall Rexx from the machines and lets just say he's not with us anymore, because we had him killed.

    1. Re:You asked for it by ebuck · · Score: 2, Informative

      A very clever play on words that seems to be something like the old "fill in the blank" stories.

      Was around a few posts back, but then it was about deploying JAVA on the desktop.

  2. Success/failure stories? by Stavr0 · · Score: 4, Informative
    Let's see, it was the Amiga and OS/2's official scripting languages. Nuff said.

    Rexx employs decimal rather than binary arithmetic. [...] You don't need to declare or predefine your variables. Rexx automatically allocates them when you first refer to them. Are these supposed to be positive points? Because it kind of flies in the face of coding best practices...

    1. Re:Success/failure stories? by Anonymous Coward · · Score: 2, Funny

      Latin was a good language, too. Unfortunately, the environments that supported it are no longer widely available or used.

      (There is no Rexx in most ATMs...)

    2. Re:Success/failure stories? by jwdb · · Score: 3, Interesting

      Are these supposed to be positive points? Because it kind of flies in the face of coding best practices...

      I take it you've never heard of LISP? It's a dynamically typed language that, despite being a few decades old (4 or 5 I think) is still seeing some decent usage. I believe the backend of Yahoo Stores is written in LISP, for example.

      Defining your vars beforehand is good practice for strict, structural coding projects and languages. If you're working in a flexible language and you know what you're doing, it's rather unnecessary (not that I can claim to, but I'm learnin').

      Jw

    3. Re:Success/failure stories? by daviddennis · · Score: 3, Insightful

      I don't think Rexx had a lot to do with the failure of the Amiga or OS/2 in the marketplace. Curiously enough, both of them had their deeply loyal adherents, and perhaps REXX was one of the reasons.

      I have to admit that as a general rule I perfer languages that don't force me to declare variables, especially for simple projects. Or perhaps I just get tired of hearing stilted, bureaucratic language like "best practices".

      That being said, what's wrong with decimal arithmatic? It has the major advantage of eliminating the tiresome rounding errors that make doing financial calculations in (say) Perl so annoying.

      I thought the examples showed a very interesting way of thinking. I probably won't learn or convert to REXX but I can see that it's a very forgiving environment, and I think that makes life more pleasant overall, especially for beginneers. I can see why it's popular in cultures where C and Perl didn't start with overwhelming advantages.

      D

    4. Re:Success/failure stories? by Stavr0 · · Score: 2, Insightful

      If you think using binary arithmetic is a "best practice" then I hope you don't write any code for use in financial applications, where it can really screw things up. Absolutely. But in my mind binary vs 'decimal' is pretty much the same. I think we're talking about binary/fixed point VS floating point arithmetic. And FP is definitely a curse on financial apps.

    5. Re:Success/failure stories? by toledobythesea · · Score: 2, Insightful

      No wonder there are so many problems, at least in business, if people think binary arithmetic is "best practice". It troubles me when I see code comments full of spelling errors. Sometimes that's witty, but usually it suggests ignorance or contempt for precision which is a rather essential attribute for programming. Rexx came out in the days when VM was a kind of counter-culture within IBM. You got the source code too. Didn't use Rexx much, but I was struck by the elaborate annotations and the literacy of the comments. There was nothing sloppy about it, in fact it made much of the other VM (and MVS) source code look pretty slapdash. (That was the first time I'd ever seen mixed-case comments - many of the assemblers then "folded" everything into upper case.) Presumably the new versions aren't written in BAL. I wish somebody would take the Rexx decimal support and put it into Java/ECMA-script.

    6. Re:Success/failure stories? by Tekoneiric · · Score: 3, Informative

      The failure of the Amiga wasn't due to Rexx. If anything Arexx helped keep the Amiga in use for years. Lightwave users missed not having Arexx on the Windows port. The failure of the Amiga was due to the execs at Commodore. They'd rather take trips to the Bahamas than do any real marketing. -Andrea-

      --
      *It's not what you can do for the Dark Side but what the Dark Side can do for you!*
  3. some issues.... by yagu · · Score: 4, Interesting

    Okay, I'm probably dating myself here (illegal in Nebraska, btw), but I remember REXX when it emerged as a replacement for EXEC which I had coded extensively in (written entire app systems) on IBM mainframes. There were a lot of benefits to REXX back then, notably it cleaned up and made transparent a lot of garbage and system management chores required to write clean EXEC code (e.g., strings tokenized at 8 chars, awkward variable interpolation)... I used REXX for a while on the mainframe and can't remember why I abandoned it.

    Fast forward 2 or 3 hundred years, and I found myself dropped into a Unix universe, and quickly self taught myself the ins and outs of shell. Haven't looked back since. Now, I'm looking back and am intrigued... REXX really does have some interesting features. And, since I have a little free time on my hands, maybe I'll re-visit REXX, but from userland out there, any feedback would be useful:

    • Are there any performance issues with REXX, especially for large implementations?
    • How much can you do self-contained in REXX today? One of the things I like about a language like perl is it really abstracts a lot of utilities otherwise passed outside of perl's purview, shielding coders from having to write platform specific snippets for portability. From the examples it looks like REXX takes the other philosophy and encourages dropping out momentarily to execute a native system command or utility.
    • Like perl, are there ways to be strict with REXX (it wasn't totally apparent from the article)?
    • Is REXX really that popular out there? The article seems to think REXX is one of the most popular languages, but other than me I can't name a single other programmer I've known who writes/has written REXX applications. Maybe this is only a European seed for now (in the article).
    • Is anyone else uncomfortable with case insensitive languages? That was one of the things I'd hoped REXX would address when it came out as a replacement for EXEC, I've always thought aside from the confusion factor of ignoring case (ever lose a file in Windows because of this?), not distinguishing case throws away an entire semantic of elegance for creating better and more maintainable code.
    1. Re:some issues.... by Foz · · Score: 3, Interesting
      I can't name a single other programmer I've known who writes/has written REXX applications.


      *raises hand* I used to use REXX extensively when I worked at Toyota. I used it on the OS/2 machines as well as the mainframe. I even used Visual REXX occasionally.

      I loved REXX. Gave it up when I moved to perl though. It is a very nice scripting language with a rich feature set.

      -- Gary F.
    2. Re:some issues.... by Conan+The+Accountant · · Score: 2, Interesting

      REXX is still used as a scripting language in the administration of some DB2 databases.

    3. Re:some issues.... by RetroGeek · · Score: 3, Interesting

      I also used REXX a lot, along with Visual REXX.

      REXX has a wonderful String parsing capability.

      And as for OS/2, as Rexx was the official scripting language, many applications came with REXX aware libraries. You could script directly for the application.

      For instance you could write a script for an email program to manage incoming mail. Or for a FAX program, etc.

      Yes other programs in the Windows (and Linux) world have macro languages, but each syntax is different. With OS/2 and REXX you only needed to learn ONE syntax, then use the libraries.

      It was a great idea.

      --

      - - - - - - - - - - -
      I am a programmer. I am paid to produce syntax not grammar. Deal with it.
    4. Re:some issues.... by TheAncientHacker · · Score: 4, Insightful

      Is anyone else uncomfortable with case insensitive languages? That was one of the things I'd hoped REXX would address when it came out as a replacement for EXEC, I've always thought aside from the confusion factor of ignoring case (ever lose a file in Windows because of this?), not distinguishing case throws away an entire semantic of elegance for creating better and more maintainable code.

      No, actually you misplacing files because the case wasn't what you expected on an old Windows 3.x system was the result of using badly ported case-sensitive tools in a case-insensitive environment. (btw: Windows has always been case-insensitive and case-preserving in the NT codebase)

      Case sensitivity is, frankly, not only useless but flat out stupid and a vast step backward as it doesn't match human readable languages or other human experience thus breaking the paradigm of programming language as translator between human intent and hardware inflexibility. It leads to huge numbers of easily avoidable errors, increased maintenance time and cost and increased overall development time while providing no benefit. Sure, it makes life a little easier for lazy compiler writers and it's habit in people who've never bothered to learn any languages not derived from C but the point of a programming language is to make things easier for the human and not the compiler. Read some code in PL/I or ALGOL or LISP or Smalltalk or SNOBOL or, for that matter, REXX and you may expand your idea of what a language can be.

      Other signs of C-blinders are thinking that three-part loop constructs are a good thing, that curly braces are actually either ergonomic or intuitive or that semicolons are how you end sentences;

    5. Re:some issues.... by vegaspctech · · Score: 2, Interesting

      I can't name a single other programmer I've known who writes/has written REXX applications.

      REXX was my Swiss Army knife for the last two BBSes I ran. I used it to fetch FidoNet mail for our network, test and process files from FidoNet file echos, pull and convert newsgroup content, mirror ftp sites, let users of my public BBS chat with users of my private BBS, handle fax transmissions coming in on the BBS lines and to do most anything Maximus or RemoteAccess didn't do out-of-the-box or didn't do the way I'd liked. But I haven't done anything with it since I took my last BBS down in '97...

      --

      Making the world a better place, one psychotic episode at a time.

    6. Re:some issues.... by hob42 · · Score: 2, Interesting

      Would you like to hear about my Polish friend who sells shoe polish?

      Case isn't the real issue here, sometimes human languages are just broken like that. Look at the present and past tense of "read" - both spelled the same, but pronounced different when spoken. Polish for shoes can be capitalized too, depending on how it's used.

      Just as I don't expect a compiler do differentiate between "read" and "read" I don't expect it to differentiate between "Polish" and "polish" either.

    7. Re:some issues.... by tilrman · · Score: 2, Funny
      Case sensitivity ... doesn't match human readable languages ...

      Capitalization is the difference between "I had to help my Uncle Jack off a horse" and "I had to help my uncle jack off a horse."

  4. VM/CMS by bsd4me · · Score: 3, Informative

    IBM made it available for nearly all of its operating systems. In particular, it was extremely handy if you were on a VM/CMS system.

    --

    (S(SKK)(SKK))(S(SKK)(SKK))

  5. Is this good? by GoofyBoy · · Score: 4, Insightful

    >You don't need to declare or predefine your variables.

    Isn't this a bad thing? You would never catch typos when using variables. I start using a variable named "myBigNumber" then the next day I mistakenly start using a "myBigNum" variable even though I mean the same thing.

    --
    The surprise isn't how often we make bad choices; the surprise is how seldom they defeat us.
    1. Re:Is this good? by Nataku564 · · Score: 3, Informative

      In some languages, like perl, the compiler will warn you about dynamically allocating variables if you have the appropriate options turned on. I am not sure if REXX has a similar flag. The dynamic scope of variables was mostly a feature for people who were just writing shell scripts and what not, where you only had global scope anyway.

    2. Re:Is this good? by Pig+Hogger · · Score: 2, Informative
      Isn't this a bad thing? You would never catch typos when using variables. I start using a variable named "myBigNumber" then the next day I mistakenly start using a "myBigNum" variable even though I mean the same thing.
      It is, indeed, a bad thing.
      This is why I *ALWAYS* begin my PHP scripts with:
      error_reporting( E_ALL );
    3. Re:Is this good? by multipartmixed · · Score: 3, Interesting

      There is no requirement to work out types in order to declare variables.

      Dynamically declared are a terrible, terrible, terrible thing.

      Take the following JavaScript excerpt:


      function foo()
      {
      for (i=0; i < 10; i++)
      hello();
      }

      function bar(world)
      {
      for (i=0; i < 10; i++)
      foo();
      }

      bar(i);


      How many times does hello() run? It looks like it should run 100 times. But it only runs 10 times.

      Add "var i" to each of those functions, and it behaves as expected.

      Javascript in many respects is a good (core) language. With better inheritance and a few other tweaks, it could be an excellent scripting language. But dynamically allocated variables really, really hurts it.

      --

      Do daemons dream of electric sleep()?
    4. Re:Is this good? by qbwiz · · Score: 4, Informative

      The problem is just how javascript defines dynamically allocated variable. Try to do the same thing in Python and it will work the way you want it to.

      --
      Ewige Blumenkraft.
    5. Re:Is this good? by Chris84000000 · · Score: 2, Insightful

      There's a small problem in your reasoning in this example. You're assuming that there exists a universal standard of what a programming language "should" do, and that happens here to be based on a C worldview.

      It "should" do what the language specification says it should do. Part of knowing any language is knowing its scoping rules. You say "It looks like it should run 100 times," but the first thing that went through my mind when I read that was not "Assuming C's scoping rules, it should run 100 times," but rather "I don't know enough about javascript's scoping rules to say what that does."

      --
      Please stop misusing Catch-22 to describe chicken-egg problems or other paradoxes that are not Catch-22.
  6. And all these years by Timesprout · · Score: 3, Funny

    I thought Rexx was the name of the animated doggie on the MS search dialog.

    --
    Do not try to read the dupe, thats impossible. Instead, only try to realize the truth
    What truth?
    There is no dupe
  7. Ruby Doobie Doooo by OSXexpert · · Score: 2, Interesting

    Check out Ruby, the language. It runs circles around Rexx, is free and very cool. True objects, all the time. Garbage collection built in, as well as everything is an object. The best of Smalltalk, Lisp, BASIC, C, and more.

    --
    --- Old Time NeXThead
  8. My past life in REXX by dougsyo · · Score: 4, Informative

    I used to be the VM/ESA systems programmer (king geek) for a state university (I'm still at that university, it's been over 21 years).

    REXX was the first serious scripting language that IBM delivered for VM (EXEC was awful and EXEC2 not much better). Our systems development (applications) staff wrote quite a number of in-house REXX applications interfaced to DMS/CMS (this was before ISPF was very usable under VM). Most of these were working with CUFS (later Advantage). I used REXX extensively to match-merge two files, generate reports, and reformat data. I also rewrote some programs in REXX that had originally been implemented in SNOBAT (a snobol4 dialect for System/370).

    Roll forward a few years. All the sudden, I'm responsible for Unix servers as well as VM. Although I installed regina on our Unix servers, I figured out pretty quickly that perl was the preferred script language for Unix (I first installed 4.0.36). I saw that there were a lot of facilities and working scripts in perl that I'd have to build for myself in REXX, so I made a point to learn perl. I still used REXX for things that interacted with our VM/ESA and z/OS & TSO/ISPF environment.

    Roll forward a few more years. IBM drops HESC, and VM becomes prohibitively expensive to keep. Meanwhile, our academia is moving to Unix and PC-based teaching, and a Unix-based ERP is on the horizon. We decided to eliminate VM. I spent quite a few hours writing perl scripts to parse DMS/CMS panel sources and REXX programs, to build ISPF panels and generate ISPF-friendly REXX from the DMS/CMS REXX code (fortunately most of the code was cookie-cutter so it was easy to do a find/replace). I knew these programs would be eliminated when the ERP was in place.

    Now I'm so neck-deep in Oracle (database, application server, and other toys) and SCT Banner that I maybe spend 10 minutes a day on our z/OS system, and haven't written a new program there (in any language, much less REXX) in six months. I still maintain or help debug a REXX program now-and-then.

    REXX was a success, but for us VM died. I still like REXX, but perl has pretty-well replaced it for me. The last time I wrote a REXX program I caught myself writing perl-isms into it that I had to fix.

    Doug

  9. Re:Biggest problem is no one is using it by Detritus · · Score: 3, Interesting
    So thats great and all, but why are you programming in a professional capacity in a language that no one can maintain?

    What, like Perl?

    I've written scripts in REXX, and found it easy to write and easy to read at a later date. There are books available on the language. I'd recommend "The REXX Language" by Cowlishaw.

    --
    Mea navis aericumbens anguillis abundat
  10. Rexx made programming IBM mainframes FUN by IEBEYEBALL · · Score: 2, Interesting

    What I remember about REXX is that it was one of the few languages (along with Model 204 User Language) that made programming IBM mainframes FUN. Of course, nowadays IBM mainframes can be tweaked to run Linux and that opens up a whole slew of scripted languages to choose from.

    --
    -- SKYKING, SKYKING, DO NOT ANSWER.
  11. History? I don't think so by TheAncientHacker · · Score: 4, Informative

    REXX's history isn't even really mentioned.

    First of all, REXX is hardly the first popular scripting language, there were lots of them before it. REXX was designed as an alternative to EXEC2 which was a replacement for EXEC and that's just on IBM's VM mainframe systems. Listing other scripting systems prior to REXX is left as an exercise for the reader.

    As for history, REXX wasn't developed as an official IBM project. It was developed as an internal tools project by Mike Cowlishaw at IBM's research lab in Hursley, England (the VENTA lab) because EXEC2 basically sucked. It was distributed on IBM's internal tools system (VMTOOLS and IBMVM) and became hugely popular inside IBM.

    It was made available as an unsupported tool through the IBM VM user group and became so popular that despite IBM managment wanting EXEC2 to be the "official" scripting language, nobody in their right minds used EXEC2 and REXX became almost universal. Pressure from their commercial VM/CMS and VM/XA users forced IBM to make REXX a supported product.

    In the mid 1980s, a PC version became available internally on the IBMPC and PCTOOLS systems and quite a few internal tools were written in REXX but despite internal popularity, IBM didn't release the PC version of REXX until much later when a vastly expanded (some would say bloated) version was released as a fairly expensive commercial product.

    As a side note, REXX was released as a scripting language for PCs with later versions of OS/2 but by that time OS/2 was insignificant in the PC industry.

    One unrelated note, Cowlishaw is also famous as the keeper of the IBM Jargon Dictionary - a tongue firmly in cheek listing of IBMisms.

  12. Re:The KEDIT editor by Anonymous Coward · · Score: 2, Interesting

    - if I click on column 50 after the end of a 30-character-long line, the cursor sticks there and I can start typing - I don't have to type spaces or tabs to get to column 50

    That is truly a great feature for blind users. Imagine not being able to see where the cursor is then having your editor suddenly decide to move it to somewhere else when you start typing. I can't believe editors think that tossing characters into the wrong place is acceptable in 2005. I can understand serious problems like that in 1985 when I first started using computers, but the fact that most editors are broken like that 20 years later is absurd.

    PS: Why am I no longer allowed to post to Slashdot without help from someone that can see? Why the filter to prevent blind users from posting? Why does the person that runs this site hate the blind?

  13. /bin/sh is older by js7a · · Score: 3, Informative
    ... Rexx, the first widely used scripting language concocted 25 years ago.
    Rexx v1 was released internal to IBM in 1979, and wasn't available to IBM cumstomers until 1982. Steve Bourne wrote /bin/sh at Bell Labs in 1974, and it was included in every Unix distribution from 1976 to the present.
    1. Re:/bin/sh is older by js7a · · Score: 2, Informative

      Ken Thompson's 1976 sh did not have any kind of control flow, but the 1977 Bourne shell had very sophisticated control flow: for/do/break/continue/done, case/esac (switch), if/then/elif/else/fi and while/do/break/continue/done. It also had subshells, command and parameter substitution, support for path searching and process-associated environment variables, redirectable standard error output, and signal trapping -- all three years before anyone outside IBM could get a copy of REXX.

  14. IBM and the Rexx Lang Assoc. by rubycodez · · Score: 2, Informative

    have made Rexx open source: get yourself some of that here

  15. Re:AREXX - the Amiga variant by Blymie · · Score: 2, Informative

    At the time however, it wasn't a relatively small group of consumers, if one was referring to consumers that use computers.

    People must put things in context. The Amiga started out with a very large percentage of marketshare. It was only in its end years that market share dwindled so, via incredible growth in _other_ market shares.

    For a while, REXX was a very dominant programming language. Then again, so was TCL for a while, and so was BASIC.

  16. REXX benefits and drawbacks by scottsk · · Score: 3, Informative

    The most obvious drawback in REXX is that the standard I/O calls don't work on the mainframe (where you have to use EXECIO calls), so it's not very portable. Really, REXX's biggest benefit is its tight integration with TSO (the mainframe command interpreter) and ISPF (the screen interface and editor). When REXX is by itself on other platforms, these benefits disappear. I use REXX on MVS (now called z/OS), but it just pales in comparison to Perl or Python for other environments.

    Keep in mind REXX predates the adoption of C-ish syntax (C, C++, Java, Perl, Python, PHP, etc), so it's not as easy to switch gears mentally as it would be among the C-ish family. As you'd expect, the syntax has its quirks, especially if you don't use it much. None of the standard library functions has names like C's, unlike Perl and PHP. Truth be told, REXX looks a whole lot like structured BASIC.

    REXX is quirky. You can use stems as associative arrays, but there is no mechanism to iterate over them. (I'm not joking.) No regular expressions built into the language like Perl has. No built-in systems programming interfaces (you have to ADDRESS the operating system to run commands, like bash, etc. - more of a flow control language like bash than an environment like Perl) While there are modern extensions like OO for REXX, they're not standard in all REXX interpreters, and are as clumsy as adding OO to BASIC, Fortran, COBOL, and other pre-C languages.

    WROX has a REXX book, the only new one in ages and ages. Unfortunately, it concentrates on non-mainframe platforms where there frankly isn't as much to talk about because you don't have the tight integration with the OS.

  17. Re:Biggest problem is no one is using it by snorklewacker · · Score: 2, Insightful

    > My disgust with Perl is leading me to use Python for scripting.

    You mean the same language that has no "use strict" at all? That one?

    If you can't maintain reasonably written perl code, stay the hell away from my C. You're a code grinder, not a programmer.

    --
    I am no longer wasting my time with slashdot
  18. Re:XOR Failure by fabu10u$ · · Score: 2, Funny
    had used & for and for a long time
    ...head... ...exploding...
    --
    They say the mind is the first thing to ... uh, what's that saying again?
  19. Re:Way ahead of its time by TheAncientHacker · · Score: 2, Insightful

    If you do declare variables then the compiler can perform validation that it otherwise can't and catch errors at compile time. It's a *good* thing.

    Object Oriented Programming theory would disagree with you. While it's a "*good* thing" for the compiler writer it's a bad thing for the programmer. One of the four original tenets of OOP is that everything in an OOP system uses LATE BINDING so that the system can be flexible. It's only because Stroustrop couldn't get that working when he was writing his semi-OOP preprocessor to C (C++, perhaps you've heard of it) that this key part of OOP started getting ignored.

    The world doesn't begin and end with what can be done easily in a C derivative language. Take a look at Smalltalk-72 to see what OOP was supposed to be.

  20. ARexx, too bad Rexx didn't grab its featurelist. by Almost-Retired · · Score: 3, Interesting

    Raises hand here, if only to lament that Rexx, at least in the form of the linux regina clone, is a poor, no, poor to the point of starving to death, comparison to ARexx, written BY William Hawes for the amiga.

    It was extensible by writing libraries for it, libraries that allowed it to do anything you were of a mind to.

    When I was still running a big box amiga, Jim Hines and I (we were both working at a tv station, http://www.wdtv.com/> ) and needed a cron to run some of the very time consuming rendering jobs that lots of video people were running on amiga's a decade back.

    So we wrote a cron in ARexx, and by carefull coding, its cpu hit was less than we could measure. Most of the wannabe cron apps for the amiga were coded to wait in busy loops till the clock matched, and of course used 20% or more of the cpu.

    Eventually I bought a copy of rexx-plus, the only actual compiler for arexx there ever was, which could build standalone programs out of your arexx scripts.

    You can yet, I think, download that to run on your old amiga, from Aminet.net, search for EzCron, latest version. IIRC the archive contains both the arexx script itself, and the compiled binary.

    We did things in a couple of days using arexx that would have taken weeks in C. Repeatedly.

    There is yet today, a headless old 2000/040 amiga there, running EzCron, and its executing additional arexx scripts to grab the prompter files for our newscasts from the news server in the news dept., and make them available for you to read at the above site. Incomplete sometimes because the news folks get lazy and don't transcribe to the prompter, whats said in a taped segment.

    But when we looked at making those arexx scripts run on linux, regina upchucked all over the place because they were doing things that Rexx never had in its repertory. If that miggy ever dies for good, we'll have to rewrite them in bash, and that will take a couple of weeks to translate I expect. Bash I believe does have all the tools to do it. But its going to take a concerted effort we haven't found the time to do yet. Normal life keeps happening...

    --
    Cheers, Gene
    "There are four boxes to be used in defense of liberty:
    soap, ballot, jury, and ammo. Please use in that order."
    -Ed Howdershelt (Author)

  21. it all depends... by constantnormal · · Score: 2, Informative

    ... REXX is yet another interpretive scripting language, one that is exceedingly clear and non-cryptic -- one can return to a REXX script you wrote a decade ago and understand it (try that with perl!).

    And REXX has a much easier learning curve than something like perl, even easier (IMHO) than plain vanilla unix hell scripting. If you're in a large group or a group with a high turnover, you could do a lot worse than selecting REXX as a scripting standard.

    For specifics as to why you might choose REXX over another scripting language in your toolkit, it has tremendous parsing capabilities (you can specify a template when you read text from the input stream, and have REXX bust up the incoming text to fit the template, adjusting case if desired) as well as very nice ways of dealing with arrays ("stems" in REXX parlance).

    One of the niceties of using REXX in the mainframe world was that you could specify the environment a command string would be interpreted in. Not quite AppleScript, where you can direct scriptable apps to do your bidding, but the next best thing.

    This allows you to co-opt other portions of your system to do the work for you, and not reinvent the wheel at every turn. Think of this as the "script as conductor" philosophy of scripting.

    But REXX is also capable of functioning as a standalone programming environment. In the mainframe realm, I've done socket programming, dynamic sql, screen painting and more file conversions than I want to think about using REXX. I do code using a fair assortment of compiled languages, but when it's crunch time, nothing beats a good interpretive scripting facility to deliver the goods in a timely manner.

    Sadly, aside from the unix/dos command shell, I don't believe many other environments are generally supported under non-mainframe REXX (I don't believe I've ever seen REXX operating as an EMACS macro, for example), but given the flexibility of the unix shell environment, that is generally sufficient.

  22. Look around! by Atomic+Frog · · Score: 2, Informative

    It's still used in IBM mainframes, and is the scripting language of choice in OS/2 (which is _still_ in heavy use, though not at home).

    For those of you NOT clued in, Rexx also comes as ObjectRexx, which, as you might guess is fully object oriented.

    IBM has completely open-sourced it, and there is also a second open-source implementation (Regina Rexx).

    Check out what's been going on at :
    http://www.rexxla.org/>

    For 90% of what people use a scripting language for, Rexx beats the pants of Perl. it's easy to use and it's _readable_.

    On many platforms, you can construct full GUI apps with it too, from paint programs, to GUI unzippers, etc.

    Oh, it's nice enough! My preferred scripting language along with Python. I've easily written stuff like converters from BSDL (boundary scan description language) to XML, even a simulation of 3-d nuclear spin diffusion in sparsely abundant cubic lattice.

  23. Re:ARexx, too bad Rexx didn't grab its featurelist by Almost-Retired · · Score: 2, Informative

    I almost forgot. The main reason it was handier than sliced bread on the amiga is that NO other language on any other platform had the concept of an ARexx "port" for direct communication from one process to another.

    I don't think it was anything but a name to address translator where the buffer named had to be read before another write to it was performed else the system went up in copious clouds of profanity. But if you paid attention to your housekeeping it was at least as stable as writing to a disk file, and a heck of a lot faster.

    --
    Cheers, Gene
    "There are four boxes to be used in defense of liberty:
    soap, ballot, jury, and ammo. Please use in that order."
    -Ed Howdershelt (Author)

  24. From a gentler time by Julian+Morrison · · Score: 2, Insightful

    Aparrently REXX will call an OS command if it doen't recognise a keyword. So just plain including grep and uniq and so forth as if they were functions is allowed. How quaint! Just think of the hacks, if you misspell pront or writte or opne or some random thing, you could be running any random black-hat code and perhaps never even knowing.

    Sorry, nostalgic folks. The state of the art has moved on, and not accidentally.

    1. Re:From a gentler time by thaig · · Score: 2, Informative

      Like, . . .er . . . bash? Or csh or ash or ksh or . . . .

      This is what makes these languages powerful - it's a concept that will never die because it's too useful.

      Regards,

      Tim

      --
      This is all just my personal opinion.
  25. NOOOO!!! EEEEVIL!!! EEEEEVIL!!! by cgreuter · · Score: 3, Informative

    No, REXX is shit. It sucks, it bites, it blows syphilitic goats through coffee stir-sticks. I'd compare it to the aborted offspring of third-generation addiction research monkeys if the Crackmonkey Defense League wouldn't picket me for it.

    Why, I hear you ask, am I so violently opposed to this allegedly powerful "scripting" "language"? It's because I once had to use it.

    I wrote a test harness with it. You know, one of those things that scripting languages are supposed to be good for? You'd think REXX would make such a task easy, wouldn't you? You'd be wrong.

    How do I hate REXX? Let me count the ways:

    1. REXX doesn't have procedures.

      You know? Procedures, aka functions aka subroutines? Those handy little things that let you subdivide your complex tasks into lots of simple ones? Ain't gottem'.

      What it has is a kind of GOSUB-with-arguments that it pretends are real procedures and look enough like them that they fooled me until it was too late.

    2. REXX's pretend procedures are just labels.

      See, when you find a procedure definition in a reasonable scripting language, it's a no-op, right? It's either an expression that creates the procedure then and there or it's a thing that the interpreter finds in the source code before it starts running the program. Either way, when running through the code, the interpreter just sort of does nothing immediate when it finds a procedure definition.

      So all we scripting hacks need to remember to do is to define our procedures before we use them, right?

      Well, in REXX, they're labels. As soon as the thread of execution reaches a fake procedure, it wanders right in, up until it hits the RETURN statement, at which point it's an error if you're lucky or a return from some unexpected function if you're not.

      And kazam! Good programming habits go unpunished.

      And let's not think about the sort of spaghetti code this, uh, feature can lead to. No, really, let's not.

    3. Local Variables Aren't.

      Since the pretend procedures are just labels, there has to be some way to monkey around with the scope to get something like local variables, right? There is. And it's vile.

      There's a command (whose name I've mercifully forgotten) which creates a new global scope. You call it in your pretend-procedure and ta-da, everything's local now. Hooray, unless you want to actually access a real global variable. But they thought of that--the command lets you list the variables from the previous scope that you want to access and they get stuck into the new scope.

      So far, so good, right?

      The problem is that these scopes nest. So if fake-procedure FOO needs to write to global variable BLAT and declares it in its scope-creation thingy, this works fine if you call FOO from the mainline.

      But what if function BAR calls FOO? Well then, the BLAT that FOO writes to will belong to BAR's scope unless BAR also declares BLAT to belong to the previous scope. And if QUUX calls BAR, the same thing happens.

      So if you want to modify a global variable from a function you have to make sure that every function that can conceivably be part of its call chain cooperates. And if you mess up and don't find all of those cases, there's no warning or error message.

    Y'know, there are other problems with REXX but they're not as bad. At least, I could have worked around them if I'd had a decent procedure system. A lot of language brokenness is tolerable if you only ever need to solve it once. REXX doesn't give me even that capability.

    To be balanced, I should say some nice things about it:

    1. It's much less horrible than OS/2 batch files. I'll even go so far as to say that if all you've got on hand is REXX and your program isn't going to be more than 60 lines or so, you're all set.
    2. When people complain to me about some of the irritations in Python or PHP or Perl, I just tell them about REXX and they go away.
    3. I'll never need to use it again.

    There we go. That's nice, isn't it?

  26. REXX is Easy to Learn by cybercreek · · Score: 2, Interesting

    I've worked in the computer programming trade since 1965 when I learned COBOL '65 in the Air Force. This year, in semi-retirement, in an equally demanding role, I taught three classes of Java Programming in a local high school. I enjoy Java but I must admit a love for REXX.

    I presented a paper on REXX at a REXX conference at Stanford University, May 1990. The topic of the paper was on the ease of portability between platforms. Subsequently to that, I working as a programmer at Bank of America's campus in Concord, CA, I trained all programmers there who wanted to stay late in how to program in REXX on MVS, VM, OS/2, DOS, and Windows platforms, the main differences being how I/O was handled.

    The course I taught at BofA was about three hours long, an hour and 1/2 for two late afternoon sessions. So the learning curve was quite low.

    In addition to teaching everything they needed to know, I also showed them how to code dynamic SQL statements in REXX code. I had already used REXX in a good bit of the code used for utilities and one-time jobs for the Cash Vault System that I was working on there.

    There are few languages that one can learn completely in 3 hours. The Java classes (one AP and two general) took an entire high school year and I only scratched the surface even though I covered all 19 chapters of Cay Horstmann's "Java Essentials".

    Those that turn their noses up at REXX I have found to be the same sort of people who think writing code is an IQ test and if they don't write code that no one else can maintain that they have somehow failed. I don't think programming has to be difficult and the best languages are those that are easy to learn and easy to program in while being able to get the job done and run efficiently. For quick and dirty code or seldom run utilities in production, REXX is an ideal language to use. Of course, for a program that is processing 10+ million records sequentially or updating a DB2 database for millions of transactions for real time access you want to use a compilable language.