aboutsummaryrefslogtreecommitdiff
path: root/example_project/src/Hello_m.f90
diff options
context:
space:
mode:
Diffstat (limited to 'example_project/src/Hello_m.f90')
-rw-r--r--example_project/src/Hello_m.f9012
1 files changed, 0 insertions, 12 deletions
diff --git a/example_project/src/Hello_m.f90 b/example_project/src/Hello_m.f90
deleted file mode 100644
index 60088a2..0000000
--- a/example_project/src/Hello_m.f90
+++ /dev/null
@@ -1,12 +0,0 @@
-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