Hi guys,
I have a question if you could me help with these:
I want to implement in cobol a repetitive structure like these:
for i = 1 to n
execute different instructions
end-for
-----
I make something like these:
01 n pic 9(2) value 1.
...