mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
eab75c3bf6
* new file: projects/numpy.org/package.yml new file: projects/numpy.org/test.f90 new file: projects/numpy.org/test.py * remove PYTHONPATH from test
6 lines
142 B
Fortran
6 lines
142 B
Fortran
! example.f90
|
|
subroutine add_numbers(a, b, c)
|
|
real, intent(in) :: a, b
|
|
real, intent(out) :: c
|
|
c = a + b
|
|
end subroutine add_numbers |