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

print *,'pi=',pi

length = pi
print *, length

end program