blob: d7ade86a60482564c6c7200d7d467b86c66b2dbb [file] [log] [blame]
module Module1
contains
subroutine say_hi
print *, "Hi"
end subroutine
subroutine say_bye
print *, "Bye"
end subroutine
subroutine rename_this
print *, "Renamed in 1"
end subroutine
end module