DEBSOURCES
Skip Quicknav
sources / lfortran / 0.45.0-1 / 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