diff options
author | Brad Richardson <brichardson@structint.com> | 2020-03-25 19:01:58 -0500 |
---|---|---|
committer | Brad Richardson <brichardson@structint.com> | 2020-03-25 19:01:58 -0500 |
commit | db8ee601cdb4fe967105a73929cbbd288a41ce1a (patch) | |
tree | 49f2239421f290900d465e35ab1479f3ceb33264 /example_project/app/main.f90 | |
parent | ab9d22f9a266ec540bc9b0248f180b26dc185ea6 (diff) | |
download | fpm-db8ee601cdb4fe967105a73929cbbd288a41ce1a.tar.gz fpm-db8ee601cdb4fe967105a73929cbbd288a41ce1a.zip |
Simplify the example project to what the defaults should be
Diffstat (limited to 'example_project/app/main.f90')
-rw-r--r-- | example_project/app/main.f90 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/example_project/app/main.f90 b/example_project/app/main.f90 new file mode 100644 index 0000000..7783f8f --- /dev/null +++ b/example_project/app/main.f90 @@ -0,0 +1,7 @@ +program example_project + use Hello_m, only: sayHello + + implicit none + + call sayHello("World") +end program example_project |