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