|< 1 2 3 >| | 26 Einträge, 3 Seiten |
perl -le '$g = "";$sk = \$g; $$sk .= " WELT"; print $$sk;'
1
2
3
4
5
6
use strict;
my $$result = 'test-';
my $text = 'text';
$$result .= $text;
print "Result: $$result";
1
2
Can't declare scalar dereference in my at test.pl line 1, near "$result ="
Execution of test.pl aborted due to compilation errors.
perl -e'my $sref = *foo{SCALAR}; $$sref .= "text"; print "$sref = $$sref\n";'
1
2
3
4
5
6
use strict;
my $$result = 'test-';
my $text = 'text';
$$result .= $text;
print "Result: $$result";
|< 1 2 3 >| | 26 Einträge, 3 Seiten |