Thread nur Stringkonstanten?
(15 answers)
Opened by lichtkind at 2017-10-02 00:49
Jetzt hab ich auch noch was dazugelernt:
Code (perl): (dl
)
1 2 3 4 use constant Z => 1984; my %h = (); $h{+Z} = 123; print Dumper \%h; # as expected Danke!!! |