source: CIVL/mods/dev.civl.abc/examples/fortran/f77_standard/implicit.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: 344 bytes
Line 
1 program p
2 implicit integer (x-z), real (i,k-l)
3 i = 2.5
4 k = 2.5
5 l = 2.5
6 x = 2.5
7 y = 2.5
8 z = 2.5
9 print *, i,k,l,x,y,z
10c$ civl assert(i .eq. 2.5)
11c$ civl assert(k .eq. 2.5)
12c$ civl assert(l .eq. 2.5)
13c$ civl assert(x .eq. 2)
14c$ civl assert(y .eq. 2)
15c$ civl assert(z .eq. 2)
16 end program
Note: See TracBrowser for help on using the repository browser.