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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Perform Until Exit

Status
Not open for further replies.

klophockey

Programmer
May 25, 2016
41
0
0
US
I have some code that compiles fine in ISCobol and MFCobol. However, it does not compile for ACUCobol.

Wondering if someone might have a suggestion on how I could get it coded for ACUCobol.

The compile error says "identifier expected, EXIT found"

perform until exit
read arc1 next
at end
exit perform
not at end
display counter
end-read
if (st not = "00" and
st not = "10")
move "Y" to w-err-sw
exit perform
else
continue
end-if
add 1 to counter
end-perform.


Thank you very much for your expertise
 
maybe the version you have does not allow it - you should check your Reference Manual for the version you have and see what it states.

Regards

Frederico Fonseca
SysSoft Integrated Ltd

FAQ219-2884
FAQ181-2886
 
Try
Code:
perform until "A" = "B"

Tom Morrison
Consultant
 
Thank you very much for the input.
The compiler does not allow for the statement I tried.....so...
The A=B code is similar to what was there previously (1=2) but that had the exposure of an infinite loop (which actually happened and requires different code.

Any other thought on how that section of code could be done?
 
klophockey said:
but that had the exposure of an infinite loop

PERFORM UNTIL EXIT also requires some statement to exit the perform (EXIT PERFORM or STOP RUN or GO TO). So, if you had an infinite loop problem before, you will still have it with UNTIL EXIT.

Tom Morrison
Consultant
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top