The following program does not cause an error, even though my package neither defines a function called import(), nor inherits from any other package:
#!/usr/bin/perl -w use strict; package This; This->import(); My question: What function is it calling, and where did it find that function? Is there a UNIVERSAL::import() which does nothing? -- Ron Newman [EMAIL PROTECTED] URL: http://www2.thecia.net/users/rnewman/
