Created
November 8, 2017 00:49
-
-
Save remysucre/e9cfac539f14a1057adbbd759bd9e49b to your computer and use it in GitHub Desktop.
This file contains 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 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