=encoding euc-jp =head1 NAME =begin original subs - Perl pragma to predeclare sub names =end original subs - サブルーチンの名前を先行宣言するための Perl プラグマ =head1 SYNOPSIS use subs qw(frob); frob 3..10; =head1 DESCRIPTION =begin original This will predeclare all the subroutine whose names are in the list, allowing you to use them without parentheses even before they're declared. =end original これはリストにある名前の全てのサブルーチンを事前宣言し、宣言する前でも かっこなしで使えるようにします。 =begin original Unlike pragmas that affect the C<$^H> hints variable, the C and C declarations are not BLOCK-scoped. They are thus effective for the entire file in which they appear. You may not rescind such declarations with C or C. =end original C<$^H> ヒント変数に影響を与えるプラグマと異なり、C と C の宣言は BLOCK スコープではありません。 従って、現れたファイル全体に有効です。 このような宣言を C や C で取り消すことはできません。 =begin original See L and L. =end original L と L を参照してください。 =begin meta Translate: SHIRAKATA Kentaro Status: completed =end meta =cut