Skip to content

Instantly share code, notes, and snippets.

@v1kko
Created February 2, 2022 12:41
Show Gist options
  • Save v1kko/5c85a991b5384fc64894045f49c1db33 to your computer and use it in GitHub Desktop.
Save v1kko/5c85a991b5384fc64894045f49c1db33 to your computer and use it in GitHub Desktop.
code_7
module hello_world_mod
contains
subroutine hello_world(name)
implicit none
write(*,*) "Hello World: ", name
end subroutine
end module
program main
use hello_world_mod, only: hello_world
implicit none
call hello_world("You there")
end program
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment