Christian Grasser 4cdd96f020 Add ada, fortran, fortran77 & haskell in function lists
- added missing unittest for c
- added further function lists for ada, fortran, fortran77, haskell from previous PR of MAPJe71_functionlist_update3
- added simple rust function list
- unittest files from the internet probably no complex ones
- added to installer

Fix #9698, close #3393, close #9727
2021-04-03 15:45:51 +02:00

18 lines
269 B
Plaintext

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