blob: 8669aa68110594982f7f79df347e5faf27608ea0 [file] [log] [blame]
module mod
implicit none
real :: variable !3,11,8
private :: variable
contains
subroutine setVariable(value)
implicit none
real, intent(in) :: value
variable = value
end subroutine
real function getVariable()
implicit none
getVariable = variable
end function
end module
program encap1
use mod
implicit none
print *,getVariable()
call setVariable(3.0)
print *,getVariable()
end program encap1