blob: d85423319f14973192925d49ed36bb8a083b80ae [file] [log] [blame]
subroutine sub
call new_procedure()
end subroutine
subroutine new_procedure()
implicit none
print *, "Hello" !<<<<<START !<<<<<END
end subroutine
program main; call sub; call flush; stop; end program