aboutsummaryrefslogtreecommitdiff
path: root/example_project/app/hello_world.f90
diff options
context:
space:
mode:
authorBrad Richardson <brichardson@structint.com>2020-02-27 21:01:13 -0800
committerBrad Richardson <brichardson@structint.com>2020-02-27 21:01:13 -0800
commitd4c0aea26050b32bf394eabe91c95ab56113ce1a (patch)
treebd662532554e059fdcc782af8c9b840c5ee68a7d /example_project/app/hello_world.f90
parent775841b8437adf4f400a21fa939156dc6ef48cc2 (diff)
downloadfpm-d4c0aea26050b32bf394eabe91c95ab56113ce1a.tar.gz
fpm-d4c0aea26050b32bf394eabe91c95ab56113ce1a.zip
Enable building executables
Diffstat (limited to 'example_project/app/hello_world.f90')
-rw-r--r--example_project/app/hello_world.f907
1 files changed, 7 insertions, 0 deletions
diff --git a/example_project/app/hello_world.f90 b/example_project/app/hello_world.f90
new file mode 100644
index 0000000..b95062d
--- /dev/null
+++ b/example_project/app/hello_world.f90
@@ -0,0 +1,7 @@
+program hello_world
+ use hello_m, only: sayHello
+
+ implicit none
+
+ call sayHello("World")
+end program hello_world