ranranrunforit's picture
download
raw
398 Bytes
module mathops
implicit none
contains
function add(a, b) result(c)
integer, intent(in) :: a, b
integer :: c
c = a + b
end function add
end module mathops
module useops
use mathops, only: add
implicit none
contains
function sum_and_double(a, b) result(d)
integer, intent(in) :: a, b
integer :: d
d = 2 * add(a, b)
end function sum_and_double
end module useops

Xet Storage Details

Size:
398 Bytes
·
Xet hash:
0d6e98cb5761f35428d5d7683dc537fc8419a1a92542469c08075855ab93c29c

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.