Skip to content

Instantly share code, notes, and snippets.

@genehack
Created June 7, 2012 11:38
Show Gist options
  • Save genehack/2888336 to your computer and use it in GitHub Desktop.
Save genehack/2888336 to your computer and use it in GitHub Desktop.
package Foo;
use Moose;
use Carp;
sub BUILD { croak "CROAK!" }
__PACKAGE__->meta->make_immutable;
package main;
use strict;
use warnings;
Foo->new;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment