http://qs321.pair.com?node_id=276997


in reply to USE or Require?

If your goal was to talk about importing, you shouldn't have brought use and require into it. The preferred way of loading modules in Perl 5 is use and if you don't want to import anything you just say use CGI (), with an empty list as the last parameter. It only makes sense to use require when you are loading the module at run-time.