Skip to content

Instantly share code, notes, and snippets.

@v1kko
Created February 2, 2022 12:44
Show Gist options
  • Save v1kko/eec38d3f57a803d32adec79b7283962d to your computer and use it in GitHub Desktop.
Save v1kko/eec38d3f57a803d32adec79b7283962d to your computer and use it in GitHub Desktop.
code_9
module hello_world_mod
contains
subroutine hello_world(name)
implicit none ! This should be present in all procedures
character(len=*) :: name
write(*,*) "Hello World: ", name
end subroutine
end module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment