blob: 4a4981ab5e5ce9f7893c041ec77f25c04ad678e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
program example
int ::test
int::testtwo
test=5
testtwo=7
int::testthree
testthree=add(test,testtwo)
print*,testthree
end program example
function int add(int a, int b)
int::value
value=a+b
return value
end
|