DEBSOURCES
Skip Quicknav
sources / lfortran / 0.45.0-1 / integration_tests / format_08.f90
123456789
program format_08 implicit none character(:), allocatable :: a integer :: b(10) a = "xx" b = 1 print "(aai6)", a,"hi",15 print "(1000(i6))", b end program