Cari di Perl 
    Perl User Manual
Daftar Isi
(Sebelumnya) Perl pragma to restrict unsafe ...Perl interpreter-based threads (Berikutnya)
Pragmas

Perl pragma to predeclare sub names

Daftar Isi

NAME

subs - Perl pragma to predeclare sub names

SYNOPSIS

  1. use subs qw(frob);
  2. frob 3..10;

DESCRIPTION

This will predeclare all the subroutine whose names are in the list, allowing you to use them without parentheseseven before they're declared.

Unlike pragmas that affect the $^H hints variable, the use vars anduse subs declarations are not BLOCK-scoped. They are thus effectivefor the entire package in which they appear. You may not rescind suchdeclarations with no vars or no subs.

See Pragmatic Modules in perlmodlib and strict subs in strict.

 
Source : perldoc.perl.org - Official documentation for the Perl programming language
Site maintained by Jon Allen (JJ)     See the project page for more details
Documentation maintained by the Perl 5 Porters
(Sebelumnya) Perl pragma to restrict unsafe ...Perl interpreter-based threads (Berikutnya)