blob: 0c26d860f3d0274799456e1fa5749f90b9966e6e [file] [log] [blame]
module mod
implicit none
integer :: variable !<<<<< 3, 14, 8, pass
end module
program encap1
use mod
implicit none
print *, variable
variable = 3
print *, variable
end program encap1