Tanton Gibbs wrote: > Will print HI; not work...you would think you wouldn't have to qualify it > if you import it into your namespace?
the statement: print HI; won't work. it's: print Test::HI,"\n"; that i have in the code. Otherwise, Perl thinks that you want to print $_ to the HI file handle. david -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
