diff options
author | Wojtek Kosior <kwojtus@protonmail.com> | 2019-05-31 13:00:20 +0200 |
---|---|---|
committer | Wojtek Kosior <kwojtus@protonmail.com> | 2019-05-31 13:00:20 +0200 |
commit | 24cadd2552c5df78e6b9a13abc49e7e7b213d3bc (patch) | |
tree | 881b3db7cbc2894f9b85dec9f13ab0f27928f847 /test.f90 | |
download | fortran-assignment2-24cadd2552c5df78e6b9a13abc49e7e7b213d3bc.tar.gz fortran-assignment2-24cadd2552c5df78e6b9a13abc49e7e7b213d3bc.zip |
initial commit - test include file finding
Diffstat (limited to 'test.f90')
-rw-r--r-- | test.f90 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test.f90 b/test.f90 new file mode 100644 index 0000000..abc2e58 --- /dev/null +++ b/test.f90 @@ -0,0 +1,10 @@ +PROGRAM test + + use, intrinsic :: iso_c_binding + implicit none + + include 'fftw3.f03' + + write(*,*) "ok" + +END PROGRAM test |