blob: e8444d3f9d18c253319a52c556f871a19f78c813 [file] [log] [blame]
program functioncalling
intrinsic flush
print *, 'This is the Fortran program; I am going to call some functions now...'
call sum(1.0,2.0,3.0)
call factorial(3)
print *, 'Done'
call flush; stop
contains
subroutine sum(x,y,z)
!x = x+y+z ! gfortran 4.4.0 on Mac OS X 10.5.7 gives "Bus error"
print *, x
end subroutine sum
subroutine factorial(j)
p=1
i=1
do i=1,j
p=p*i
end do
print *, j, "! = ", p
end subroutine factorial
subroutine sum2(x,y)
implicit none
real :: p
integer :: x, y
p = x+y
end subroutine sum2
end