aboutsummaryrefslogtreecommitdiff
path: root/example_packages/hello_complex/source/subdir/constants.f90
diff options
context:
space:
mode:
Diffstat (limited to 'example_packages/hello_complex/source/subdir/constants.f90')
-rw-r--r--example_packages/hello_complex/source/subdir/constants.f907
1 files changed, 7 insertions, 0 deletions
diff --git a/example_packages/hello_complex/source/subdir/constants.f90 b/example_packages/hello_complex/source/subdir/constants.f90
new file mode 100644
index 0000000..59d6e5f
--- /dev/null
+++ b/example_packages/hello_complex/source/subdir/constants.f90
@@ -0,0 +1,7 @@
+module subdir_constants
+implicit none
+
+character(*), parameter :: GREET_STR = 'Hello, '
+character(*), parameter :: FAREWELL_STR = 'Goodbye, '
+
+end module subdir_constants