Last active
February 2, 2022 12:23
-
-
Save v1kko/c853a21b214ae5d63417ae18552c37b6 to your computer and use it in GitHub Desktop.
code_1
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
subroutine hello_world(name) | |
write(*,*) "Hello World: ", name | |
end subroutine |
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 | |
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