You are correct. /s
On Fri, 16 Aug 2002, Benjamin Goldberg wrote: > In the file perl6/P6C/IMCC.pm, in the import sub, the else block: > > } else { > foreach (@_) { > *{$caller . '::' . $_} = \&$_; > } > } > > I think that it should be: > > } else { > shift; > foreach (@_) { > *{$caller . '::' . $_} = \&$_; > } > }