Perl Programming/Keywords/no

From Wikibooks, open books for an open world
Jump to navigation Jump to search
Previous: next Keywords Next: not

The no keyword

[edit | edit source]

no is the opposite function of use. One can specify with this command that the version to be used is older than the given version.

Syntax

[edit | edit source]
  no MODULE VERSION LIST
  no MODULE VERSION
  no MODULE LIST
  no MODULE
  no VERSION

Examples

[edit | edit source]
  no v5.10.0;  # use Perl before 5.10.0
  no 5.10.0;   # the same
  []
}

See also

[edit | edit source]
Previous: next Keywords Next: not