I am converting an old code in Fortran which I think is a 77. there a couple of usage of IF in the following way that I can't realize what it does:
IF(x1-x2) 12, 13, 14
12 WRITE(*,*) x1
.
.
.
13 y=...
.
.
14 DO x=x1,x2
IF(x-x2) 33, 34, 40
.
.
.
The code complies and runs fine and it produces the results. Has anyone encountered such a usage of IF?