mirror of
https://github.com/notepad-plus-plus/notepad-plus-plus.git
synced 2025-07-04 04:24:38 +02:00
- 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
18 lines
269 B
Plaintext
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
|