Add tests for R builds
This commit is contained in:
parent
69b268e6f7
commit
1de359f3e6
1 changed files with 505 additions and 0 deletions
5
test/testpkg/src/square.f
Normal file
5
test/testpkg/src/square.f
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
subroutine square(x,answer)
|
||||
integer, intent(in) :: x
|
||||
integer, intent(out) :: answer
|
||||
answer = x * x
|
||||
end
|
||||
Loading…
Reference in a new issue