Created
May 19, 2010 15:29
-
-
Save azurestone/406430 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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