tmp
/
pip-install-ghxuqwgs
/numpy_78e94bf2b6094bf9a1f3d92042f9bf46
/doc
/source
/f2py
/compile_session.dat
import f2py2e | |
fsource = ''' | |
subroutine foo | |
print*, "Hello world!" | |
end | |
''' | |
f2py2e.compile(fsource,modulename='hello',verbose=0) | |
0 | |
import hello | |
hello.foo() | |
Hello world! | |