Help for this page

Select Code to Download


  1. or download this
    package Def;
    use warnings;
    ...
    @EXPORT = qw($foo $bar $boo);
    
    1;
    
  2. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    $boo = 'The fans boo you today';
    
     print $boo,$foo,$bar;