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