in reply to Imported symbol names
The cheating way of doing this is to observe the symbols table of package main before and after importing the symbols for ':form' :
use CGI; + my %symbols; + for my $foo ( keys %main:: ) { $symbols{$foo} = 1; } + CGI::import 'CGI',':form'; + for my $foo ( grep !exists $symbols{$_} , keys %main:: ) { print $foo,"\n"; }
/J\
|
|---|