次のスクリプトが機能しない理由を説明できる人はいますか? Label not found for "last SOME_BLOCK"
エラーの原因は何ですか?
#!/usr/bin/perl
use v5.14;
SOME_BLOCK: {
alarm 1;
$SIG{ALRM} = sub {
last SOME_BLOCK;
};
my $count = 0;
while (1) {
$count += 1;
say $count;
}
};