blob: 6ba1b562496237ac3082506895d673927fc9b2f6 [file] [log] [blame]
program program !<<<<<START
print *, "Hello"
end program program
subroutine s
integer :: i
do i = 3, 4
do j = 5, 6
print *, i + j
end do
end do
end subroutine !<<<<<END