modaff.f90

Fichiers Programmes Routines Fonctions Includes Search Modules

Source original

MODULE modaff
modaff is used by


modaff does not use anything.
modaff defines private routines
modaff does not include anything.

  INTERFACE fafiche
     MODULE PROCEDURE fafint, fafreal
  END INTERFACE
CONTAINS
  SUBROUTINE fafint
fafint is not called.
fafint does not call anything.
fafint does not use anything.
fafint does not include anything.
(n) ; INTEGER :: n
    PRINT*,'n est entier',n
  END SUBROUTINE fafint
  SUBROUTINE fafreal
fafreal is not called.
fafreal does not call anything.
fafreal does not use anything.
fafreal does not include anything.
(r) ; REAL :: r
modaff.f90->fafreal:modaff.f90:9->10

    PRINT*,'r est real',r
  END SUBROUTINE fafreal
END MODULE modaff