Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Does the evaluate command exist?

Status
Not open for further replies.
Jul 17, 2003
109
US
App Developer asked me, AIX admin, how to tell if the evaluate command exists in my version of cobol. How do I figure this out? Also, he asked me to explain to him how to get into cobol? I don't even know what that means :) Can anyone out there provide me with some help? THANKS
 
Doesn't have the App Developer access to the manuals ?
 
It's very ease to see if it does or not.
Let the guy create a program that contains the following.


Working storage.

01 abc pic x.

procedure

main.
evaluate abc
when "A"
continue
end-evaluate.


Of the program compiles OK then it has otherwise it does not.

Regards

Frederico Fonseca
SysSoft Integrated Ltd
 
Some people like to have their hands held... thanks for the info.
 
If you know what your compiler is, we may be able to point you (and your "friend") to the online documentation - including an LRM (Language Reference Manual) that tells what statements (not commands) are available for it.

Bill Klein
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top