Rename file to avoid case-insensitive collision

This commit is contained in:
Brandon Keepers
2014-11-18 23:08:07 -05:00
committed by Brandon Keepers
parent f792029a20
commit a6f168d1ac
2 changed files with 0 additions and 0 deletions

25
samples/FORTRAN/sample3.F Normal file
View File

@@ -0,0 +1,25 @@
c comment
* comment
program main
end
subroutine foo( i, x, b )
INTEGER i
REAL x
LOGICAL b
if( i.ne.0 ) then
call bar( -i )
end if
return
end
double complex function baz()
baz = (0.0d0,0.0d0)
return
end