Fixed issue with do statements with counter where artihmetic expressions couldn't be used as conditions only contants or variables, created the program 1

This commit is contained in:
Mariano Uvalle 2019-05-04 22:31:21 -05:00
parent 34d4697aa9
commit c7d211f0b5
9 changed files with 426 additions and 101 deletions

View file

@ -10,4 +10,5 @@ print 'a(j) = ', a(j), endline
a(i) = a(j) + a(i)
print 'a(i) = ', a(i), endline
i = j + 2
print i, endline
end program