blob: 03304c23d7984a6a8594a053e7345724a7d8eaed [file] [log] [blame]
module mod
implicit none
integer, parameter :: CONSTANT = 10 !3,25,8
end module
program encap1
use mod
implicit none
print *, CONSTANT
end program encap1