Guest User

Untitled

a guest
Mar 13th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. sub new
  2. {
  3. my $class = shift;
  4. my $self = bless Symbol::gensym(), ref($class) || $class;
  5. tie *$self, $self;
  6. $self->open(@_);
  7. return $self;
  8. }
Add Comment
Please, Sign In to add comment