Created
February 2, 2022 12:40
-
-
Save v1kko/c161e494bb82a7b54d490afa5ae3ed45 to your computer and use it in GitHub Desktop.
code_6
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
program main | |
interface | |
subroutine hello_world(name) | |
character(len=*) :: name | |
end subroutine | |
end interface | |
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