Have some old Fortran (believe its 77) that I'm trying to
convert. Its working, except the old skips the lines of code that have a "D" in front of it, like a comment. I'm not sure why it does this. Does anyone know if "D" is some sort of directive that tells the compiler not to compile or does anyone have any insight. Below is some code. Notice the "D" on the far left:
convert. Its working, except the old skips the lines of code that have a "D" in front of it, like a comment. I'm not sure why it does this. Does anyone know if "D" is some sort of directive that tells the compiler not to compile or does anyone have any insight. Below is some code. Notice the "D" on the far left:
Code:
X= X+SSEMES('RN{0}(R)R ' ,'Ring -N<:' ,0.007 , 5,1,L)
D X= X+SSEMES('RN{/}=R ' ,'-N=:',0.014 ,44,1,L) ! (cf. #4)
D X= X+SSEMES('RN{0}=R ' ,'RingN=:',007 ,45,1,L) ! (cf. #5)
11111