Advertisement
hackloper775

principal

Dec 29th, 2013
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.21 KB | None | 0 0
  1. #!/usr/bin/env perl
  2.  
  3. use warnings;
  4. use strict;
  5. use feature 'say';
  6. use test::persona; # ./test/persona.pm
  7.  
  8. my $yo = persona->new();
  9.  
  10. say $yo->getName();
  11.  
  12. $yo->setName("Tu nombre");
  13.  
  14. say $yo->getName();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement