program hello_world3
implicit none
character*32 text
c
text = 'Hello World'
call printtext(text)
end
subroutine printtext(tekst)
character*32 tekst
write (*,*) tekst