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