blob: cb4d6641b520f0ee317bb314178d0e2cbe3cbd6b [file] [log] [blame]
module mod
implicit none
integer :: variable !3,14,8
contains
integer function three()
three = 3
end function
end module
program encap1
use mod
implicit none
print *, variable
variable = 3
print *, variable
end program encap1