Created
February 2, 2022 12:44
-
-
Save v1kko/eec38d3f57a803d32adec79b7283962d to your computer and use it in GitHub Desktop.
code_9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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