summaryrefslogtreecommitdiffstats
path: root/src/examples/subroutine.ft
blob: 58171b8c360620de7761d52c4f05952cc04c2dfa (plain)
1
2
3
4
5
6
7
8
9
program subroutineExample
calc(3,4,5)
end program subroutineExample

subroutine calc(int a,int b,int c)
int::total
total=a*b*c
print*,total
end