"Jack Stevenson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] <snip> > If I set the gloabal manualy and run the lines individualy in terminal it > sort of works but skips the globals that I am trying to import. > copy and paste from terminal
Sounds like the procedure-block variable scoping issue. You initialize IO prior to calling the extrinsic function that expects to find it lying around, but if you're in a procedure block (default for method code) IO won't be visible to the function. Set your method not to compile as a procedure block, do your own NEWing (to keep your method clean), and see if this helps. Regards, John Murray George James Software
