Perl tips

From Chuckipedia
Revision as of 21:24, 6 October 2018 by Admin (talk | contribs) (Created page with "== Undefine vars == <pre> You have several ways to undef a list of vars already. The most simple I know is ( $from, $to ) = (); </pre> <ref> https://www.perlmonks.org/?node...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Undefine vars

You have several ways to undef a list of vars already. The most simple I know is
( $from, $to ) = (); 

[1]

References