Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
elemental function strf_R4P(fm,n)result(str)!< Convert real to string.!<!<```fortran!< use penf!< print "(A)", str(fm=FR4P, n=1._R4P)!<```!=> 0.100000E+01 <<<character(*),intent(in)::fm!< Format different from the standard for the kind.real(R4P),intent(in)::n!< Real to be converted.character(DR4P)::str!< Returned string containing input number.write(str,trim(fm))nendfunction strf_R4P