Skip to content

Instantly share code, notes, and snippets.

@remysucre
Created November 8, 2017 00:49
Show Gist options
  • Save remysucre/e9cfac539f14a1057adbbd759bd9e49b to your computer and use it in GitHub Desktop.
Save remysucre/e9cfac539f14a1057adbbd759bd9e49b to your computer and use it in GitHub Desktop.
program test
integer i, j, a (20), b (40), c (10, 10)
real x
logical d (20)
x = 3.1415
j = 1
a (1 : 20) = b (1 : 40 : 2) + 1
d = .TRUE.
labeled : do i = 1, 1
do i = 1, 20
a (i) = sin (x)
enddo
do i = 1, 20
a (i) = sin (x)
enddo
enddo
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment