Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fortran-module-procedure « t4018 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1ce6d854c22be5942e6d7ae6e4b93125b3232bec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
 module RIGHT

   implicit none
   private

   interface letters  ! generic interface
      module procedure aaaa, &
                       bbbb, &
                       ChangeMe, &
                       dddd
   end interface
   
end module RIGHT