DEBSOURCES
Skip Quicknav
sources / lfortran / 0.59.0-3 / tests / format7.f90
12345678
module module_format7 character(len=10) :: a = '(es15.8e2)' end module program format7 use module_format7 print *, a print a, 1.0 end program