Skip to content

Instantly share code, notes, and snippets.

@wchristian
Created February 21, 2023 12:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wchristian/92bcfae018a18316005f2b58d2caa305 to your computer and use it in GitHub Desktop.
Save wchristian/92bcfae018a18316005f2b58d2caa305 to your computer and use it in GitHub Desktop.
my $instance;
sub BUILD {
my( $self ) = @_;
$instance = $self;
}
sub instance {
my ( $class ) = @_;
die __PACKAGE__ .' no instance found' unless $instance;
return $instance
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment