DEBSOURCES
Skip Quicknav
sources / lfortran / 0.59.0-3 / integration_tests / string_33.f90
12345678910
program string_33 implicit none character(len=1) :: str write(str, '(a)') "A" print *, "|"//str//"|" if (str /= "A") error stop end program