I have a very short program:
!> This is a test.
program main
implicit none
integer :: i
real :: a
!> THIS IS A LOOP!
do i = 1,10
a = 2.0*i
write(*,*) a
end do
end program main
But in the generated Doxygen docs, only This is a test.
is shown.
How can I get THIS IS A LOOP!
to show?
I know it works for subroutines and modules.