Thread hash Problem (11 answers)
Opened by Gustl at 2011-01-07 00:52

Linuxer
 2011-01-07 11:14
#144163 #144163
User since
2006-01-27
3890 Artikel
HausmeisterIn

user image
Hi,

my $code = sub {}; auf einer Zeile funktioniert hier mit einer 5.8.8.... ;)

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$ cat t.pl
#! /usr/bin/perl
use strict;
use warnings;
use Data::Dumper;

my $code = sub { print "hallo @_\n"; };

print Dumper($code);
printf "v%vd\n", $^V;
$code->("Welt");
__END__

$ perl t.pl
$VAR1 = sub { "DUMMY" };
v5.8.8
hallo Welt
$
meine Beiträge: I.d.R. alle Angaben ohne Gewähr und auf Linux abgestimmt!
Die Sprache heisst Perl, nicht PERL. - Bitte Crossposts als solche kenntlich machen!

View full thread hash Problem