blob: b9e484f7585d2a5eddd33d8aecfdd59ebe4f1325 [file] [log] [blame]
module Module2
contains
subroutine say_konnichiwa
print *, "Kon'nichiwa"
end subroutine
subroutine say_sayonara
print *, "Sayonara"
end subroutine
subroutine rename_this
print *, "Renamed in 2"
end subroutine
end module