module mymod integer x end module program main use mymod print *, x ! 初期化されていない x を参照している! end program