blob: c02bf5f8ecd985c9a52575853210adaa1b504ee4 [file] [log] [blame]
program main
use module1
implicit none
integer :: blah
blah =getI() + j + k !6,12,1
call setI(blah + j)
call mult(getI(),j,blah)
contains
subroutine mult(a,b,c)
integer, intent(in) :: a, b, c
integer :: temp
temp = a*b*c
end subroutine
end program