diff options
author | Brad Richardson <brichardson@structint.com> | 2020-02-28 07:48:45 -0800 |
---|---|---|
committer | Brad Richardson <brichardson@structint.com> | 2020-02-28 07:48:45 -0800 |
commit | 8d8b6ace5f0c2d208e5bfccecd70b6082832bc3e (patch) | |
tree | 7a18d600760607d7bde2d4cf2045e45e4bd0ff5e /example_project/app | |
parent | d4c0aea26050b32bf394eabe91c95ab56113ce1a (diff) | |
download | fpm-8d8b6ace5f0c2d208e5bfccecd70b6082832bc3e.tar.gz fpm-8d8b6ace5f0c2d208e5bfccecd70b6082832bc3e.zip |
Enable capitalization of source files
Diffstat (limited to 'example_project/app')
-rw-r--r-- | example_project/app/Hello_world.f90 | 7 | ||||
-rw-r--r-- | example_project/app/hello_world.f90 | 7 |
2 files changed, 7 insertions, 7 deletions
diff --git a/example_project/app/Hello_world.f90 b/example_project/app/Hello_world.f90 new file mode 100644 index 0000000..956a6c2 --- /dev/null +++ b/example_project/app/Hello_world.f90 @@ -0,0 +1,7 @@ +program Hello_world + use Hello_m, only: sayHello + + implicit none + + call sayHello("World") +end program Hello_world diff --git a/example_project/app/hello_world.f90 b/example_project/app/hello_world.f90 deleted file mode 100644 index b95062d..0000000 --- a/example_project/app/hello_world.f90 +++ /dev/null @@ -1,7 +0,0 @@ -program hello_world - use hello_m, only: sayHello - - implicit none - - call sayHello("World") -end program hello_world |