Skip to content

Instantly share code, notes, and snippets.

@Ansarina
Created October 22, 2015 21:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ansarina/68a68198a1c7becd22fb to your computer and use it in GitHub Desktop.
Save Ansarina/68a68198a1c7becd22fb to your computer and use it in GitHub Desktop.
Subroutine Add2Vector3D(A,B,C)
Real, dimension(3)::A,B,C
Integer::i
Do i=1,3
C(i)=A(i)+B(i)
End do
End Subroutine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment