DEBSOURCES
Skip Quicknav
sources / lfortran / 0.45.0-1 / integration_tests / string_36.f90
12345678910111213
program string_36 implicit none character(len=5) :: hello hello = "hello" hello(4:3) = "" print *, hello if (hello /= "hello") error stop end program