source: CIVL/mods/dev.civl.abc/examples/fortran/f77_standard/blanks.f

main
Last change on this file was aad342c, checked in by Stephen Siegel <siegel@…>, 3 years ago

Performing huge refactor to incorporate ABC, GMC, and SARL into CIVL repo and use Java modules.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5664 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 330 bytes
Line 
1c Fortran 77 Standard Sec. 3.1.16
2c A blank character has no meaning
3 prog ram p
4 impl icitnone
5 integ er i, j
6
7 j = 0
8 do100, i=1,1 8
9 j = j + 1
10 100 continue
11c$ civl assert(i==19)
12
13 j = 0
14 do 1 01, i=1,18
15 j = j + 1
16 101 c o n t i n u e
17c$ civl assert(i==19)
18 end program
Note: See TracBrowser for help on using the repository browser.