How do I display module variables in Visual Studio with IVF.
If I set a breakpoint at the return statement, how do I find out what xxx is?
I've tried xxx, test%xxx, test.xxx, this%xxx, this.xxx. Any suggestions would be welcome.
Code:
module test
integer:: xxx
contains
subroutine init
xxx = 20
return
end subroutine init
end module test
program main
use test
call init
end program
I've tried xxx, test%xxx, test.xxx, this%xxx, this.xxx. Any suggestions would be welcome.