complex Program

Uses

  • program~~complex~~UsesGraph program~complex complex module~my_module my_module program~complex->module~my_module module~fordebug fordebug module~my_module->module~fordebug fortime fortime module~fordebug->fortime iso_fortran_env iso_fortran_env module~fordebug->iso_fortran_env

Calls

program~~complex~~CallsGraph program~complex complex proc~my_subroutine my_type%my_subroutine program~complex->proc~my_subroutine proc~my_function my_type%my_function proc~my_subroutine->proc~my_function

Variables

Type Attributes Name Initial
type(my_type) :: obj

Source Code

program complex
   use my_module, only: my_type
   implicit none
   type(my_type) :: obj

   print*, " "
   print*, "Running complex example..."
   call obj%my_subroutine(0)
   call obj%err%print()
end program complex