I am new to REXX and am stuck with the following issue:
I am writing a simplified panel that reads in a user id as well as a dataset name, and validates the latter.
/* REXX */
/**************************************************************/
/* Simulation of panel that takes in user input */
say "Please enter your ID"
pull id
say "Welcome" id || ". Please enter a dataset name."
pull dsname
say "Validating " dsname "..."
However, while the id is output correctly the dsname (dataset) is not. It does not show up in the "Validating " dsname output.
Please enter your ID
**user**
Welcome USER. Please enter a dataset name.
*** **data**
Validating ... /* Should be "Validating data..."*/
Is there something special about PULL that I am not addressing which is causing the omission in the output?