>>import numpy.f2py as f2py
>>f2py -c -m foo foo.f90
File "<stdin>", line 1
f2py -c -m foo foo.f90
^
SyntaxError: invalid syntax
subroutine foo (a)
implicit none
integer, intent(in) :: a
print*, "Hello from Fortran!"
print*, "a=",a
end subroutine foo