10
0
mirror of https://gitlab.com/scemama/irpf90.git synced 2024-07-09 21:03:38 +02:00
irpf90/example/uvwt.irp.f

37 lines
504 B
FortranFixed
Raw Normal View History

BEGIN_PROVIDER [ integer, t ]
t = u1+v+4
END_PROVIDER
BEGIN_PROVIDER [integer,w]
w = d5+3
END_PROVIDER
BEGIN_PROVIDER [ integer, v ]
v = u2+w+2
!END_PROVIDER
BEGIN_PROVIDER [ integer, u1 ]
integer :: fu
u1 = fu(d1,d2)
integer :: n, m
n=3
do i=1,n
print *, i
enddo
m=2
do i=1,m
print *, i
enddo
PROVIDE u2
END_PROVIDER
BEGIN_PROVIDER [ integer, u2 ]
integer :: fu
u2 = fu(d3,d4)
END_PROVIDER
integer function fu(x,y)
integer :: x,y
fu = x+y+1
end function