summaryrefslogtreecommitdiffstats
path: root/test cases/fortran/2 modules/prog.f90
blob: ef72d11a8757e6513449ece4871ff03e0a9e77f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
program main
use circle, only: pi
use line, only: length
implicit none

print *,'pi=',pi

length = pi
print *, length

end program