Help for this page

Select Code to Download


  1. or download this
    ### fee_file.pl
    use strict;
    ...
    __END__
    Produces the warning message:
    Name "main::fee" used only once: possible typo at ...
    
  2. or download this
    ### foo_file.pl
    use strict;
    ...
    Produces the warning message:
    Name "main::fee" used only once: possible typo at ...
    
  3. or download this
    ### perl
    $foo = 1;
    
    ### python
    foo = 1
    
  4. or download this
    ### perl
    print "Hello $foo."         ### 19 chars
    
    ### python
    print "Hello "+foo+".",     ### 23 chars