use module
am 03.03.2007 11:13:01 von aHi
What is the difference between
use Module
use Module ()
use Module (func1 func2)
?
And, what is the different require and use?
Thanks
Hi
What is the difference between
use Module
use Module ()
use Module (func1 func2)
?
And, what is the different require and use?
Thanks
On Mar 3, 6:31 pm, "Sisyphus"
> "a"
> > Hi
>
> > What is the difference between
> > use Module
>
> Will import only whatever is in @Module::EXPORT
>
> > use Module ()
>
> will import nothing.
>
> > use Module (func1 func2)
>
> will import only func1 and func2 (but only if func1 and func2 are in
> @Module::EXPORT_OK).
.... or @Module::EXPORT
Paul Lalli