Skip to content

Instantly share code, notes, and snippets.

@v1kko
Created February 2, 2022 12:40
Show Gist options
  • Save v1kko/c161e494bb82a7b54d490afa5ae3ed45 to your computer and use it in GitHub Desktop.
Save v1kko/c161e494bb82a7b54d490afa5ae3ed45 to your computer and use it in GitHub Desktop.
code_6
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