Thread Seltsamer Effekt des fetten Kommas (5 answers)
Opened by BernhardSchmalhofer at 2023-06-02 16:53

BernhardSchmalhofer
 2023-06-02 16:53
#194943 #194943
User since
2009-03-26
56 Artikel
BenutzerIn
[Homepage] [default_avatar]
Hallo,

ich bin zufällig auf einen Effekt gestoßen der mir auf die Schnelle nicht klar ist. Warum wird diese Ausgabe erzeugt:

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

my %hash = (
- KeyMinus => 'ValueMinus',
+ KeyPlus => 'ValuePlus',
);

print Dumper(\%hash);

bernhard$ perl t.pl
$VAR1 = {
'KeyPlus' => 'ValuePlus',
'-KeyMinus' => 'ValueMinus'
};

View full thread Seltsamer Effekt des fetten Kommas