blob: 7d9dc0fd4acbc081f55edfafb5dea981dcf279d5 (
about) (
plain)
1
2
3
4
5
6
7
8
9
|
module fortfuncs
implicit none
contains
subroutine square(x,y)
integer, intent(in), value :: x
integer, intent(out) :: y
y = x*x
end subroutine square
end module fortfuncs
|