Warum darf ich soetwas nicht machen?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
Type check failed for assignment
in '&infix:<=>' at line 1
in 'routine' at line 1
in main program body at line 14:./perl.pl
Wenn ich statt
my Int $eins;
my Int $zwei;
schreibe, dann funktioniert es.
Last edited: 2011-02-19 10:02:06 +0100 (CET)