use Module ();
ist äquivalent zu
BEGIN { require Module }
Imports some semantics into the current package from the named module, generally by
aliasing certain subroutine or variable names into your package. It is exactly
equivalent toBEGIN { require Module; import Module LIST; }
except that Module must be a bareword.
Du hast nicht genau gelesen was Oesi schrub. Er führte das Beispiel an:
If you don't want your namespace altered, explicitly supply an empty list:
use Module ();
That is exactly equivalent to
BEGIN { require Module }
d.h. use entspricht require mit dem Unterschied, daß es zur Compilezeit ausgeführt wird.
Nein.
Mit Klammer schon.
Struppi.