The following is an exercise that will serve as a review of some of the rules used in the previous examples. You are to write a procedure that adds two numbers. Name the procedure ADD.CMD.
Here is a list of what you need to do in this procedure:
There are many ways to write procedures to accomplish the same task. To make it easier in this procedure, the user is asked for each number separately, then the numbers are added. The following is the thought process you might use to write the procedure for ADD.CMD.
/* This procedure adds two numbers */SAY "Enter the first number." PULL num1 SAY "Enter the second number." PULL num2 SAY "The sum of the two numbers is" num1 + num2 EXIT
To test ADD.CMD, type ADD at the OS/2 command prompt and try some numbers. Here is what the procedure should look like when it is run, and your numbers are 3 and 12.
[C:\]ADDEnter the first number. 3 Enter the second number. 12 The sum of the two numbers is 15 [C:\]