useless module

This commit is contained in:
tTh 2023-03-15 14:39:44 +01:00
parent 56ef22b4eb
commit 89d1cbda85
1 changed files with 9 additions and 0 deletions

9
Modules/dummy.f90 Normal file
View File

@ -0,0 +1,9 @@
module dummy
implicit none
contains
subroutine print_dummy
print *, 'this is the dummy subroutine'
end subroutine
end module