At Thu, 14 Nov 2002 11:01:46 +1000, Scott Ragen wrote: > I would like to be able to load a perl module, do whats need to be done, > then unload the module again.
you want "use Module::Name;" for compile-time loading and "require Module::Name;" for run-time loading. there are subtle differences between the two, if you don't know/care use "use". you don't want to unload it again. -- - Gus -- SLUG - Sydney Linux User's Group - http://slug.org.au/ More Info: http://lists.slug.org.au/listinfo/slug
