Topic: Small problem debugging character variables
The debugger doesn't properly list the local variables in subroutine greet in the following example.
subroutine greet(name)
character(len=*) :: name
print *,'Hello ',trim(name)
end subroutine greet
program main
character(len=10) :: name
name = 'Michael'
call greet(name)
end program main
David