Skip to content

Instantly share code, notes, and snippets.

@azurestone
Created May 19, 2010 15:29
Show Gist options
  • Select an option

  • Save azurestone/406430 to your computer and use it in GitHub Desktop.

Select an option

Save azurestone/406430 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl -l
use strict;
use warnings;
use Data::Dumper;
use lib 'lib01';
use Person;
my $args = {
name => 'AzureStone',
age => '18',
};
my $person = Person->new($args);
$person->self_introduction;
1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment