aboutsummaryrefslogtreecommitdiff
path: root/example_project/app/hello_world.f90
blob: b95062d64864a764e4f9b668879e826f5b6898f9 (plain)
1
2
3
4
5
6
7
program hello_world
    use hello_m, only: sayHello

    implicit none

    call sayHello("World")
end program hello_world