Leser: 1
|< 1 2 3 4 ... 6 >| | 53 Einträge, 6 Seiten |
1
2
3
4
5
my $test; # ev auch gleich mit "" oder 0 oder sonstwas vorbelegen, my $test = "";
if($x eq $y)
{
$test = 123;
}
$foo::bar="";
my $test = "123" if $x eq $y;
my $test = "123" if $x eq $y;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
C:\>perl
use strict;
use warnings;
my $x = 2;
my $test = 123 if $x;
print $test;
^Z
123
C:\>perl
use strict;
use warnings;
my $x = 0;
my $test = 123 if $x;
print $test;
^Z
Use of uninitialized value in print at - line 5.
C:\>
|< 1 2 3 4 ... 6 >| | 53 Einträge, 6 Seiten |