RosettaCodeData/Task/String-append/Fortran/string-append-1.f

11 lines
123 B
FortranFixed
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
program main
character(len=:),allocatable :: str
str = 'hello'
str = str//' world'
write(*,*) str
end program main