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

print *,'pi=',pi

length = pi
print *, length

end program