我有一些troble編譯這個方法: #changes the names of the associations for $agentConf
#where the key value pairs in %associationsToChangeDict are the old and new values respectively
sub UpdateConfObjectAssociatio
在使用用戶定義的變量時,沒有'@' - sigil有沒有我不能做的事情? #!perl6
use v6;
my $list = <a b c d e f>;
my @list = <a b c d e f>;
$list.list.perl.say;
@list.perl.say;
$list[2..4].say;
@list[2..4].say;
$list.elems.
這個問題是關於要求在Perl的系統發生了什麼事情的一些解釋,因爲我不含蓄明白這一點,雖然我」現在編碼已經有25年多了。所以這裏的故事... 試圖在Perl5中與Cyrus::IMAP::Admin實例一起工作我試圖獲取並打印配額列表,導致返回的結構化數據有點奇怪。 my %quotas = $client->listquota(@list[0]);
if ($client->error) {
似乎有一些不一致的行爲時相同字母名稱的變量,但不同的印記被使用: > my $a="foo";
foo
> my @a=1,2
[1 2]
> say $a
foo # this is what I have expected
> my $b = 1,2,3
(1 2 3)
> my @b = (0, $b.Slip)
[0 1] # I expect to get