Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2015
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1.  
  2. package Whatever;
  3.  
  4. sub new {
  5. my ($class, $options) = @_;
  6. $options{'a'} = 3;
  7. return bless $options, $class;
  8. }
  9.  
  10. sub method {
  11. my ($self, $others) = @_;
  12. ...
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement