Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/perl -w
use strict;
print "Hello World!\n";
Global symbol "$d" requires explicit package name at test line 9.
Global symbol "$e" requires explicit package name at test line 10.
Global symbol "$f" requires explicit package name at test line 11.
Global symbol "$d" requires explicit package name at test line 11.
Global symbol "$e" requires explicit package name at test line 11.
Global symbol "$f" requires explicit package name at test line 13.
Execution of test aborted due to compilation errors.
Argument "string" isn't numeric in addition (+) at test line 10.
#!/usr/local/bin/perl -w
use strict;
#@food = ("apples", "pears", "eels");
#$l=push(@food, "eggs", "lard");
#($a, $b) = @food;
#$f ="@food";
#print $b;
#($a, $b) = ($c, $d);
$d='009';
$e='string';
$f=$d+$e;
#print @food."";
print $f;
#!/usr/local/bin/perl -w
use strict;
use diagnostics;
#@food = ("apples", "pears", "eels");
#$l=push(@food, "eggs", "lard");
#($a, $b) = @food;
#$f ="@food";
#print $b;
#($a, $b) = ($c, $d);
my $d='009';
my $e='string';
my $f=$d+$e;
#print @food."";
print $f;
Argument "string" isn't numeric in addition (+) at test line 12 (#1)
(W numeric) The indicated string was fed as an argument to an operator
that expected a numeric value instead. If you're fortunate the message
will identify which operator was so unfortunate.
9
my $f=$d . $e;
Congrats on the TipMaster thing too Trojan.