aboutsummaryrefslogtreecommitdiff
path: root/example_project/src/Hello_m.f90
diff options
context:
space:
mode:
authorBrad Richardson <brichardson@structint.com>2020-02-28 07:48:45 -0800
committerBrad Richardson <brichardson@structint.com>2020-02-28 07:48:45 -0800
commit8d8b6ace5f0c2d208e5bfccecd70b6082832bc3e (patch)
tree7a18d600760607d7bde2d4cf2045e45e4bd0ff5e /example_project/src/Hello_m.f90
parentd4c0aea26050b32bf394eabe91c95ab56113ce1a (diff)
downloadfpm-8d8b6ace5f0c2d208e5bfccecd70b6082832bc3e.tar.gz
fpm-8d8b6ace5f0c2d208e5bfccecd70b6082832bc3e.zip
Enable capitalization of source files
Diffstat (limited to 'example_project/src/Hello_m.f90')
-rw-r--r--example_project/src/Hello_m.f9012
1 files changed, 12 insertions, 0 deletions
diff --git a/example_project/src/Hello_m.f90 b/example_project/src/Hello_m.f90
new file mode 100644
index 0000000..60088a2
--- /dev/null
+++ b/example_project/src/Hello_m.f90
@@ -0,0 +1,12 @@
+module Hello_m
+ implicit none
+ private
+
+ public :: sayHello
+contains
+ subroutine sayHello(name)
+ character(len=*), intent(in) :: name
+
+ print *, "Hello, " // name // "!"
+ end subroutine sayHello
+end module Hello_m