in Eclipse but I'm looking for a
simple interactive python shell that can execute some programs.
IPython does the job but is less friendly than IDLE in term of program editing.
Anyway, I think I will use it for now.
Thanks for your reply.
Regards,
Christophe
On Tue, Dec 2, 2008 at 08:26, Ch
Hi all,
I compile the followinq code using "f2py -c --fcompiler=gnu95
--compiler=mingw32" -m hello
subroutine AfficheMessage(szText)
character szText*100
write (*,*) szText
return
end
Using python console :
>>>import hello
>>>hello.affichemessage("
Hello")
works fine