10 lines
123 B
Fortran
10 lines
123 B
Fortran
program main
|
|
|
|
character(len=:),allocatable :: str
|
|
|
|
str = 'hello'
|
|
str = str//' world'
|
|
|
|
write(*,*) str
|
|
|
|
end program main
|