Thread Frage zu "type annotations" (2 answers)
Opened by rakudo at 2011-02-19 09:54

moritz
 2011-02-19 13:15
#145772 #145772
User since
2007-05-11
923 Artikel
HausmeisterIn
[Homepage]
user image
Weil $hash{$a} und $hash{$b} keine Integer sind.

Code: (dl )
1
2
my %hash = classify { chr $_ }, 97..102;
say %hash.perl;


Führt zu

Code: (dl )
{"a" => [97], "b" => [98], "c" => [99], "d" => [100], "e" => [101], "f" => [102]}


Du siehst also, dass die Hash-Elemente nicht Integer, sondern Arrays mit je einem Integer sind.

View full thread Frage zu "type annotations"