aboutsummaryrefslogtreecommitdiff
path: root/example_project/src
diff options
context:
space:
mode:
authorBrad Richardson <brichardson@structint.com>2020-04-13 20:10:36 -0500
committerBrad Richardson <brichardson@structint.com>2020-04-29 19:08:05 -0700
commit7a371d11e9bc18825b5352b90dd7c88e8efbe491 (patch)
tree20d72b6d05b227e9cb1397775c21a5521e24391d /example_project/src
parent7ec56260921d73a01039cd881e7ce278d59931f9 (diff)
downloadfpm-7a371d11e9bc18825b5352b90dd7c88e8efbe491.tar.gz
fpm-7a371d11e9bc18825b5352b90dd7c88e8efbe491.zip
Remove the old example project
Diffstat (limited to 'example_project/src')
-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