in reply to Module Usage

use is based on require, which does a once-only check. However, the import is done separately at each use, but recall that use is also built on BEGIN, so it's performed once at compile-time, not run-time.

-- Randal L. Schwartz, Perl hacker

Replies are listed 'Best First'.
RE: Re: Module Usage
by Lord Rau (Novice) on Oct 13, 2000 at 20:29 UTC
    Ok? So that sort of answers my question...