diff options
Diffstat (limited to 'example_project/app/main.f90')
-rw-r--r-- | example_project/app/main.f90 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/example_project/app/main.f90 b/example_project/app/main.f90 new file mode 100644 index 0000000..7783f8f --- /dev/null +++ b/example_project/app/main.f90 @@ -0,0 +1,7 @@ +program example_project + use Hello_m, only: sayHello + + implicit none + + call sayHello("World") +end program example_project |