Copyright © tutorialspoint.com

PERL tied Function


Syntax

tied VARIABLE


Definition and Usage

Returns a reference to the object underlying the tied entity VARIABLE. To understand tied check tie function.

Return Value

  • undef if VARIABLE is not tied to a package.

  • Otherwise Returns a reference to the object.

Example

Please check tie function


Copyright © tutorialspoint.com