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/src | |
parent | d4c0aea26050b32bf394eabe91c95ab56113ce1a (diff) | |
download | fpm-8d8b6ace5f0c2d208e5bfccecd70b6082832bc3e.tar.gz fpm-8d8b6ace5f0c2d208e5bfccecd70b6082832bc3e.zip |
Enable capitalization of source files
Diffstat (limited to 'example_project/src')
-rw-r--r-- | example_project/src/Hello_m.f90 (renamed from example_project/src/hello_m.f90) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example_project/src/hello_m.f90 b/example_project/src/Hello_m.f90 index a341602..60088a2 100644 --- a/example_project/src/hello_m.f90 +++ b/example_project/src/Hello_m.f90 @@ -1,4 +1,4 @@ -module hello_m +module Hello_m implicit none private @@ -9,4 +9,4 @@ contains print *, "Hello, " // name // "!" end subroutine sayHello -end module hello_m +end module Hello_m |