REXX 101

General
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

If you’ve never seen REXX code, this is the section for you. We’ll write a simple program to exercise some of the most common REXX functions and then turn you loose to create your own programs.

Start with your editor of choice. If you have no preference, use the OS/2 System Editor. In an OS/2 window, simply type the following:
e RexxProg.cmd All REXX programs must have .CMD as their extension. Type the code shown in Figure 1 into the editor window. This code prompts you to enter your name, then displays a message telling you the number of letters in your name.

The program starts by prompting you to enter some data, using the SAY terminal output keyword. PULL waits for you to enter data. After typing data and pressing the Enter key, the variable NAME is set to the value you typed. The variable Y is set to 0. (REXX doesn’t require variables to be explicitly defined. It determines their type by their assignment.) We then enter a DO loop to iterate once for each letter in the NAME you entered. We use the LENGTH function to determine the number of characters in the value of NAME. Inside the loop, we use the SUBSTR function to echo the selected letter of NAME for a length of 1. We then increment Y. When we exit the loop, we build a report string. The double-bar characters tell REXX to concatenate strings. The final SAY command connects two variables and a literal.

Save the program and exit the editor. In fact, not only save the program, but guard it carefully; many of the larger software development companies would kill to get their hands on complex code like this. :-)

From the OS/2 prompt (REXX will not run in a DOS environment), type REXXPROG (the name we assigned when we first edited the file) and compare the screen display with the code you typed.


Having gained the status of a REXX expert, you’re now ready for EHLLAPI programming.

/* REXX */
say ‘Enter your name:’
pull name
y = 0
do i = 1 to length(name)

say substr(name,i,1)

y = y + 1

end i
str_1 = ‘You ‘
str_2 = str_1||’entered’
say str_2 y ‘ letter(s).’

Figure 1: REXX Code for Sample Program


BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$

Book Reviews

Resource Center

  •  

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: