blob: fe13658e7ffa7db160da540a88c4cfc88b227452 [file] [log] [blame]
module mod
implicit none
real :: variable !3,11,8
end module
program encap1
use mod
implicit none
print *, variable
variable = 3.0
print *, variable
end program encap1