Thread Frage zu "type annotations"
(2 answers)
Opened by rakudo at 2011-02-19 09:54
Warum darf ich soetwas nicht machen?
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 #!perl6 use v6; my %hash = classify { chr $_ }, 97..102; my Int $eins; my Int $zwei; sub routine ( $a, $b ) { ( $eins, $zwei ) = %hash{$a, $b}; return $eins, $zwei; } routine( 'a', 'c' ).perl.say; Code: (dl
)
1 Type check failed for assignment Wenn ich statt schreibe, dann funktioniert es. Last edited: 2011-02-19 10:02:06 +0100 (CET) |